diff options
| author | Chong Yidong | 2012-02-25 11:08:39 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-02-25 11:08:39 +0800 |
| commit | 1339bf430205178bf1003e9b825adf7ca78feff9 (patch) | |
| tree | f05edbdcce34c25a8ace00fcac65fca46bface89 | |
| parent | 3c9dfce6da30c2b4483b0e95d33af3dd0bd9b26f (diff) | |
| download | emacs-1339bf430205178bf1003e9b825adf7ca78feff9.tar.gz emacs-1339bf430205178bf1003e9b825adf7ca78feff9.zip | |
* lisp/newcomment.el (comment-styles): Add autoload.
Fixes: debbugs:10868
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/newcomment.el | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3dbed71d4b5..5351f8f5e4f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-02-25 Chong Yidong <cyd@gnu.org> | 1 | 2012-02-25 Chong Yidong <cyd@gnu.org> |
| 2 | 2 | ||
| 3 | * newcomment.el (comment-styles): Add autoload (Bug#10868). | ||
| 4 | |||
| 3 | * term/x-win.el (x-initialize-window-system): Reduce default for | 5 | * term/x-win.el (x-initialize-window-system): Reduce default for |
| 4 | x-selection-timeout to 5 seconds (Bug#8869). | 6 | x-selection-timeout to 5 seconds (Bug#8869). |
| 5 | 7 | ||
diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 41b5041ded5..ddb6c71d1a6 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el | |||
| @@ -185,6 +185,7 @@ The `plain' comment style doubles this value. | |||
| 185 | This should generally stay 0, except for a few modes like Lisp where | 185 | This should generally stay 0, except for a few modes like Lisp where |
| 186 | it is 1 so that regions are commented with two or three semi-colons.") | 186 | it is 1 so that regions are commented with two or three semi-colons.") |
| 187 | 187 | ||
| 188 | ;;;###autoload | ||
| 188 | (defconst comment-styles | 189 | (defconst comment-styles |
| 189 | '((plain nil nil nil nil | 190 | '((plain nil nil nil nil |
| 190 | "Start in column 0 (do not indent), as in Emacs-20") | 191 | "Start in column 0 (do not indent), as in Emacs-20") |