aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-01-22 06:56:23 +0000
committerGlenn Morris2008-01-22 06:56:23 +0000
commit0dedb2bee0e945c11f5cbabc8a79f389da05d424 (patch)
treefd0a8c6b1d04efef794cdbbd19d94191a45c452d
parentf52749ed49f1793cf6d89f4f37039b6d70ae291c (diff)
downloademacs-0dedb2bee0e945c11f5cbabc8a79f389da05d424.tar.gz
emacs-0dedb2bee0e945c11f5cbabc8a79f389da05d424.zip
(hide-ifdef-initially, hide-ifdef-read-only)
(hide-ifdef-lines, hide-ifdef-shadow, hide-ifdef-shadow): Remove autoload cookies.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/hideif.el5
2 files changed, 4 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6fd1b706a9c..448943d5857 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12008-01-22 Glenn Morris <rgm@gnu.org> 12008-01-22 Glenn Morris <rgm@gnu.org>
2 2
3 * progmodes/hideif.el (hide-ifdef-initially, hide-ifdef-read-only)
4 (hide-ifdef-lines, hide-ifdef-shadow, hide-ifdef-shadow):
5 Remove autoload cookies.
6
3 * vc.el (vc-diff-sentinel): Do not write a footer if there were 7 * vc.el (vc-diff-sentinel): Do not write a footer if there were
4 differences. 8 differences.
5 9
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el
index b0f3cc9e3af..a55883b666a 100644
--- a/lisp/progmodes/hideif.el
+++ b/lisp/progmodes/hideif.el
@@ -114,31 +114,26 @@
114 "Hide selected code within `ifdef'." 114 "Hide selected code within `ifdef'."
115 :group 'c) 115 :group 'c)
116 116
117;;;###autoload
118(defcustom hide-ifdef-initially nil 117(defcustom hide-ifdef-initially nil
119 "Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated." 118 "Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated."
120 :type 'boolean 119 :type 'boolean
121 :group 'hide-ifdef) 120 :group 'hide-ifdef)
122 121
123;;;###autoload
124(defcustom hide-ifdef-read-only nil 122(defcustom hide-ifdef-read-only nil
125 "Set to non-nil if you want buffer to be read-only while hiding text." 123 "Set to non-nil if you want buffer to be read-only while hiding text."
126 :type 'boolean 124 :type 'boolean
127 :group 'hide-ifdef) 125 :group 'hide-ifdef)
128 126
129;;;###autoload
130(defcustom hide-ifdef-lines nil 127(defcustom hide-ifdef-lines nil
131 "Non-nil means hide the #ifX, #else, and #endif lines." 128 "Non-nil means hide the #ifX, #else, and #endif lines."
132 :type 'boolean 129 :type 'boolean
133 :group 'hide-ifdef) 130 :group 'hide-ifdef)
134 131
135;;;###autoload
136(defcustom hide-ifdef-shadow nil 132(defcustom hide-ifdef-shadow nil
137 "Non-nil means shadow text instead of hiding it." 133 "Non-nil means shadow text instead of hiding it."
138 :type 'boolean 134 :type 'boolean
139 :group 'hide-ifdef) 135 :group 'hide-ifdef)
140 136
141;;;###autoload
142(defface hide-ifdef-shadow '((t (:inherit shadow))) 137(defface hide-ifdef-shadow '((t (:inherit shadow)))
143 "Face for shadowing ifdef blocks." 138 "Face for shadowing ifdef blocks."
144 :group 'hide-ifdef) 139 :group 'hide-ifdef)