aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTassilo Horn2009-11-20 14:28:54 +0000
committerTassilo Horn2009-11-20 14:28:54 +0000
commitab84bfa00e809931dd7fd0acefe719cd276197a4 (patch)
tree58a720fc46d3c151dcbdd9c4e723a70af1aa6849
parent1f35fda94f3aeaeec99fd327ea34d70b8dbdd30b (diff)
downloademacs-ab84bfa00e809931dd7fd0acefe719cd276197a4.tar.gz
emacs-ab84bfa00e809931dd7fd0acefe719cd276197a4.zip
* progmodes/cc-cmds.el: declare-functioned forward-subword and
backward-subword to quit the byte-compiler.
-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'."