From: Tassilo Horn Date: Fri, 20 Nov 2009 14:28:54 +0000 (+0000) Subject: * progmodes/cc-cmds.el: declare-functioned forward-subword and X-Git-Tag: emacs-pretest-23.1.90~301 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ab84bfa00e809931dd7fd0acefe719cd276197a4;p=emacs.git * progmodes/cc-cmds.el: declare-functioned forward-subword and backward-subword to quit the byte-compiler. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d0eb4efbcc7..4b6809af072 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-11-20 Tassilo Horn + * progmodes/cc-cmds.el: declare-functioned forward-subword and + backward-subword to quit the byte-compiler. + * makefile.w32-in: Don't refer cc-subword.elc but subword.elc. * 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 (delete-char -2))))) + +(declare-function forward-subword "subword" (&optional arg)) +(declare-function backward-subword "subword" (&optional arg)) + ;; "nomenclature" functions + c-scope-operator. (defun c-forward-into-nomenclature (&optional arg) "Compatibility alias for `c-forward-subword'."