]> git.eshelyaron.com Git - emacs.git/commitdiff
Quieten cc-mode compilation
authorGlenn Morris <rgm@gnu.org>
Wed, 6 May 2015 20:00:22 +0000 (16:00 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 6 May 2015 20:00:22 +0000 (16:00 -0400)
* lisp/progmodes/cc-awk.el (c-forward-sws):
* lisp/progmodes/cc-cmds.el (c-forward-subword, c-backward-subword):
Declare.

lisp/progmodes/cc-awk.el
lisp/progmodes/cc-cmds.el

index 1ef80c801eefffa65e3066f3b6d44048c6e5a3ba..ad0248561a8a87baf3278e2cfc650b303e336ab4 100644 (file)
@@ -61,6 +61,7 @@
 (cc-bytecomp-defun c-backward-token-1)
 (cc-bytecomp-defun c-beginning-of-statement-1)
 (cc-bytecomp-defun c-backward-sws)
+(cc-bytecomp-defun c-forward-sws)
 
 (defvar awk-mode-syntax-table
   (let ((st (make-syntax-table)))
index 68075f356ab8a6c17de8433c5254b21152362ecc..94dc34bb20e67b4cdb9ce553f8b9ac1ce41f4d66 100644 (file)
@@ -1317,6 +1317,9 @@ keyword on the line, the keyword is not inserted inside a literal, and
   (autoload 'c-subword-mode "cc-subword"
     "Mode enabling subword movement and editing keys." t)))
 
+(declare-function c-forward-subword "ext:cc-subword" (&optional arg))
+(declare-function c-backward-subword "ext:cc-subword" (&optional arg))
+
 ;; "nomenclature" functions + c-scope-operator.
 (defun c-forward-into-nomenclature (&optional arg)
   "Compatibility alias for `c-forward-subword'."