diff options
| author | Per Abrahamsen | 2002-04-06 11:41:36 +0000 |
|---|---|---|
| committer | Per Abrahamsen | 2002-04-06 11:41:36 +0000 |
| commit | 232c8d4c1027dfc587012f33ed818ecd1f35f2b9 (patch) | |
| tree | 3de341b13035f46d944779334f69993af2071568 | |
| parent | db5968a489f2575d450245f7a670cb1e5cdd1571 (diff) | |
| download | emacs-232c8d4c1027dfc587012f33ed818ecd1f35f2b9.tar.gz emacs-232c8d4c1027dfc587012f33ed818ecd1f35f2b9.zip | |
2002-04-06 Per Abrahamsen <abraham@dina.kvl.dk>
* progmodes/cc-vars.el (c-block-comment-prefix): Specify :value
for customization type.
Reported by Mattias Fredsberg <mattias.fredsberg@active-tv.com>.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/cc-vars.el | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9ca1322f682..4c94c19feda 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2002-04-06 Per Abrahamsen <abraham@dina.kvl.dk> | ||
| 2 | |||
| 3 | * progmodes/cc-vars.el (c-block-comment-prefix): Specify :value | ||
| 4 | for customization type. | ||
| 5 | Reported by Mattias Fredsberg <mattias.fredsberg@active-tv.com>. | ||
| 6 | |||
| 1 | 2002-04-06 Mike Williams <mdub@bigfoot.com> | 7 | 2002-04-06 Mike Williams <mdub@bigfoot.com> |
| 2 | 8 | ||
| 3 | * textmodes/xml-lite.el: Remove. | 9 | * textmodes/xml-lite.el: Remove. |
diff --git a/lisp/progmodes/cc-vars.el b/lisp/progmodes/cc-vars.el index 11f6fe38640..d9ff217ae0a 100644 --- a/lisp/progmodes/cc-vars.el +++ b/lisp/progmodes/cc-vars.el | |||
| @@ -291,7 +291,11 @@ It's only used when a one-line block comment is broken into two or | |||
| 291 | more lines for the first time; otherwise the appropriate prefix is | 291 | more lines for the first time; otherwise the appropriate prefix is |
| 292 | adapted from the comment. This variable is not used for C++ line | 292 | adapted from the comment. This variable is not used for C++ line |
| 293 | style comments." | 293 | style comments." |
| 294 | :type 'string | 294 | ;; We need to specify a :value to prevent `defcustom-c-stylevar' from |
| 295 | ;; giving it an invalid value. Perhaps `defcustom-c-stylevar' | ||
| 296 | ;; should evaluate the value first? | ||
| 297 | ;; Per Abrahamsen <abraham@dina.kvl.dk> 2002-04-06. | ||
| 298 | :type '(string :value "* ") | ||
| 295 | :group 'c) | 299 | :group 'c) |
| 296 | 300 | ||
| 297 | (defcustom-c-stylevar c-comment-prefix-regexp | 301 | (defcustom-c-stylevar c-comment-prefix-regexp |