From: Glenn Morris Date: Wed, 6 May 2015 20:00:22 +0000 (-0400) Subject: Quieten cc-mode compilation X-Git-Tag: emacs-25.0.90~2174 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7511337a8a651f9b8a07576bbfafb0ace9e38d53;p=emacs.git Quieten cc-mode compilation * lisp/progmodes/cc-awk.el (c-forward-sws): * lisp/progmodes/cc-cmds.el (c-forward-subword, c-backward-subword): Declare. --- diff --git a/lisp/progmodes/cc-awk.el b/lisp/progmodes/cc-awk.el index 1ef80c801ee..ad0248561a8 100644 --- a/lisp/progmodes/cc-awk.el +++ b/lisp/progmodes/cc-awk.el @@ -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))) diff --git a/lisp/progmodes/cc-cmds.el b/lisp/progmodes/cc-cmds.el index 68075f356ab..94dc34bb20e 100644 --- a/lisp/progmodes/cc-cmds.el +++ b/lisp/progmodes/cc-cmds.el @@ -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'."