Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
58bd8740
Commit
58bd8740
authored
Apr 14, 2006
by
Stefan Monnier
Browse files
(c-mode-menu): Don't presume c-subword-mode is bound.
parent
50b7bce0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
lisp/ChangeLog
lisp/ChangeLog
+12
-9
lisp/progmodes/cc-langs.el
lisp/progmodes/cc-langs.el
+2
-1
No files found.
lisp/ChangeLog
View file @
58bd8740
2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/cc-langs.el (c-mode-menu):
Don't presume c-subword-mode is bound.
2006-04-13 Bill Wohler <wohler@newt.com>
* cus-edit.el (customize-package-emacs-version-alist): Update
docstring.
* cus-edit.el (customize-package-emacs-version-alist): Update docstring.
(customize-package-emacs-version): Use cdr instead of cadr now
that alists use dotted pairs.
...
...
@@ -26,8 +30,8 @@
2006-04-13 Carsten Dominik <dominik@science.uva.nl>
* textmodes/org.el: (org-set-regexps-and-options
,
org-get-current-options): Better names for the startup folding
* textmodes/org.el: (org-set-regexps-and-options
)
(
org-get-current-options): Better names for the startup folding
options.
2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
...
...
@@ -37,8 +41,8 @@
2006-04-12 Davis Herring <herring@lanl.gov> (tiny change)
* files.el (hack-one-local-variable-eval-safep):
Recognize
`edebug-form-spec' for `put', but only if it passes
* files.el (hack-one-local-variable-eval-safep):
Recognize
`edebug-form-spec' for `put', but only if it passes
`edebug-basic-spec'. Generalize `put' handling.
* emacs-lisp/edebug.el (edebug-basic-spec): New function for
...
...
@@ -49,11 +53,10 @@
2006-04-13 Carsten Dominik <dominik@science.uva.nl>
* textmodes/org.el: (org-ctrl-c-ctrl-c): Improved documentation
string.
* textmodes/org.el: (org-ctrl-c-ctrl-c): Improve documentation string.
(org-agenda-mouse-1-follows-link)
(org-mouse-1-follows-link): New options.
(org-format-agenda-item): Fix
ed
bug if TAGS is nil.
(org-format-agenda-item): Fix bug if TAGS is nil.
(org-agenda-get-scheduled): Quote `priority' symbol in plist.
2006-04-13 Nick Roberts <nickrob@snap.net.nz>
...
...
lisp/progmodes/cc-langs.el
View file @
58bd8740
...
...
@@ -267,7 +267,8 @@ the evaluated constant value at compile time."
[
"Hungry delete"
c-toggle-hungry-state
:style
toggle
:selected
c-hungry-delete-key]
[
"Subword mode"
c-subword-mode
:style
toggle
:selected
c-subword-mode]
)))
:style
toggle
:selected
(
and
(
boundp
'c-subword-mode
)
c-subword-mode
)
]
)))
;;; Syntax tables.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment