diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/hideif.el | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 665552955d9..5b2f3faa8da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-01-23 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * progmodes/hideif.el (hide-ifdef-shadow): Add version number | ||
| 4 | for defcustom. | ||
| 5 | (hide-ifdef-shadow): Add version number for defface. | ||
| 6 | |||
| 1 | 2008-01-23 Glenn Morris <rgm@gnu.org> | 7 | 2008-01-23 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * textmodes/org.el (org-export-latex-cleaned-string): Fix declaration. | 9 | * textmodes/org.el (org-export-latex-cleaned-string): Fix declaration. |
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el index a55883b666a..4560836cb0b 100644 --- a/lisp/progmodes/hideif.el +++ b/lisp/progmodes/hideif.el | |||
| @@ -132,11 +132,13 @@ | |||
| 132 | (defcustom hide-ifdef-shadow nil | 132 | (defcustom hide-ifdef-shadow nil |
| 133 | "Non-nil means shadow text instead of hiding it." | 133 | "Non-nil means shadow text instead of hiding it." |
| 134 | :type 'boolean | 134 | :type 'boolean |
| 135 | :group 'hide-ifdef) | 135 | :group 'hide-ifdef |
| 136 | :version "23.1") | ||
| 136 | 137 | ||
| 137 | (defface hide-ifdef-shadow '((t (:inherit shadow))) | 138 | (defface hide-ifdef-shadow '((t (:inherit shadow))) |
| 138 | "Face for shadowing ifdef blocks." | 139 | "Face for shadowing ifdef blocks." |
| 139 | :group 'hide-ifdef) | 140 | :group 'hide-ifdef |
| 141 | :version "23.1") | ||
| 140 | 142 | ||
| 141 | 143 | ||
| 142 | (defvar hide-ifdef-mode-submap | 144 | (defvar hide-ifdef-mode-submap |