diff options
| author | Stefan Monnier | 2006-04-14 11:30:20 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-04-14 11:30:20 +0000 |
| commit | 58bd87402ed95e8943f17e1e68fbae96997da2a6 (patch) | |
| tree | e34927e55d3f52e3984dd4f7ff76acef107c2c11 | |
| parent | 50b7bce06860f5aede4a7aa60780afeb488d0a6b (diff) | |
| download | emacs-58bd87402ed95e8943f17e1e68fbae96997da2a6.tar.gz emacs-58bd87402ed95e8943f17e1e68fbae96997da2a6.zip | |
(c-mode-menu): Don't presume c-subword-mode is bound.
| -rw-r--r-- | lisp/ChangeLog | 21 | ||||
| -rw-r--r-- | lisp/progmodes/cc-langs.el | 3 |
2 files changed, 14 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 045d14192ed..c3a1fd89a64 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * progmodes/cc-langs.el (c-mode-menu): | ||
| 4 | Don't presume c-subword-mode is bound. | ||
| 5 | |||
| 1 | 2006-04-13 Bill Wohler <wohler@newt.com> | 6 | 2006-04-13 Bill Wohler <wohler@newt.com> |
| 2 | 7 | ||
| 3 | * cus-edit.el (customize-package-emacs-version-alist): Update | 8 | * cus-edit.el (customize-package-emacs-version-alist): Update docstring. |
| 4 | docstring. | ||
| 5 | (customize-package-emacs-version): Use cdr instead of cadr now | 9 | (customize-package-emacs-version): Use cdr instead of cadr now |
| 6 | that alists use dotted pairs. | 10 | that alists use dotted pairs. |
| 7 | 11 | ||
| @@ -26,8 +30,8 @@ | |||
| 26 | 30 | ||
| 27 | 2006-04-13 Carsten Dominik <dominik@science.uva.nl> | 31 | 2006-04-13 Carsten Dominik <dominik@science.uva.nl> |
| 28 | 32 | ||
| 29 | * textmodes/org.el: (org-set-regexps-and-options, | 33 | * textmodes/org.el: (org-set-regexps-and-options) |
| 30 | org-get-current-options): Better names for the startup folding | 34 | (org-get-current-options): Better names for the startup folding |
| 31 | options. | 35 | options. |
| 32 | 36 | ||
| 33 | 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org> | 37 | 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org> |
| @@ -37,8 +41,8 @@ | |||
| 37 | 41 | ||
| 38 | 2006-04-12 Davis Herring <herring@lanl.gov> (tiny change) | 42 | 2006-04-12 Davis Herring <herring@lanl.gov> (tiny change) |
| 39 | 43 | ||
| 40 | * files.el (hack-one-local-variable-eval-safep): Recognize | 44 | * files.el (hack-one-local-variable-eval-safep): |
| 41 | `edebug-form-spec' for `put', but only if it passes | 45 | Recognize `edebug-form-spec' for `put', but only if it passes |
| 42 | `edebug-basic-spec'. Generalize `put' handling. | 46 | `edebug-basic-spec'. Generalize `put' handling. |
| 43 | 47 | ||
| 44 | * emacs-lisp/edebug.el (edebug-basic-spec): New function for | 48 | * emacs-lisp/edebug.el (edebug-basic-spec): New function for |
| @@ -49,11 +53,10 @@ | |||
| 49 | 53 | ||
| 50 | 2006-04-13 Carsten Dominik <dominik@science.uva.nl> | 54 | 2006-04-13 Carsten Dominik <dominik@science.uva.nl> |
| 51 | 55 | ||
| 52 | * textmodes/org.el: (org-ctrl-c-ctrl-c): Improved documentation | 56 | * textmodes/org.el: (org-ctrl-c-ctrl-c): Improve documentation string. |
| 53 | string. | ||
| 54 | (org-agenda-mouse-1-follows-link) | 57 | (org-agenda-mouse-1-follows-link) |
| 55 | (org-mouse-1-follows-link): New options. | 58 | (org-mouse-1-follows-link): New options. |
| 56 | (org-format-agenda-item): Fixed bug if TAGS is nil. | 59 | (org-format-agenda-item): Fix bug if TAGS is nil. |
| 57 | (org-agenda-get-scheduled): Quote `priority' symbol in plist. | 60 | (org-agenda-get-scheduled): Quote `priority' symbol in plist. |
| 58 | 61 | ||
| 59 | 2006-04-13 Nick Roberts <nickrob@snap.net.nz> | 62 | 2006-04-13 Nick Roberts <nickrob@snap.net.nz> |
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el index b02df16b4f5..8120094f606 100644 --- a/lisp/progmodes/cc-langs.el +++ b/lisp/progmodes/cc-langs.el | |||
| @@ -267,7 +267,8 @@ the evaluated constant value at compile time." | |||
| 267 | ["Hungry delete" c-toggle-hungry-state | 267 | ["Hungry delete" c-toggle-hungry-state |
| 268 | :style toggle :selected c-hungry-delete-key] | 268 | :style toggle :selected c-hungry-delete-key] |
| 269 | ["Subword mode" c-subword-mode | 269 | ["Subword mode" c-subword-mode |
| 270 | :style toggle :selected c-subword-mode]))) | 270 | :style toggle :selected (and (boundp 'c-subword-mode) |
| 271 | c-subword-mode)]))) | ||
| 271 | 272 | ||
| 272 | 273 | ||
| 273 | ;;; Syntax tables. | 274 | ;;; Syntax tables. |