aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/cc-cmds.el4
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d0eb4efbcc7..4b6809af072 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12009-11-20 Tassilo Horn <tassilo@member.fsf.org> 12009-11-20 Tassilo Horn <tassilo@member.fsf.org>
2 2
3 * progmodes/cc-cmds.el: declare-functioned forward-subword and
4 backward-subword to quit the byte-compiler.
5
3 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc. 6 * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4 7
5 * Makefile.in: Don't refer cc-subword.elc but subword.elc. 8 * Makefile.in: Don't refer cc-subword.elc but subword.elc.
diff --git a/lisp/progmodes/cc-cmds.el b/lisp/progmodes/cc-cmds.el
index e356089d4ad..d5393c4bdb7 100644
--- a/lisp/progmodes/cc-cmds.el
+++ b/lisp/progmodes/cc-cmds.el
@@ -1322,6 +1322,10 @@ keyword on the line, the keyword is not inserted inside a literal, and
1322 (delete-char -2))))) 1322 (delete-char -2)))))
1323 1323
1324 1324
1325
1326(declare-function forward-subword "subword" (&optional arg))
1327(declare-function backward-subword "subword" (&optional arg))
1328
1325;; "nomenclature" functions + c-scope-operator. 1329;; "nomenclature" functions + c-scope-operator.
1326(defun c-forward-into-nomenclature (&optional arg) 1330(defun c-forward-into-nomenclature (&optional arg)
1327 "Compatibility alias for `c-forward-subword'." 1331 "Compatibility alias for `c-forward-subword'."