Quieten cc-mode compilation

* lisp/progmodes/cc-awk.el (c-forward-sws):
* lisp/progmodes/cc-cmds.el (c-forward-subword, c-backward-subword):
Declare.
This commit is contained in:
Glenn Morris 2015-05-06 16:00:22 -04:00
parent 1ca93e0184
commit 7511337a8a
2 changed files with 4 additions and 0 deletions

View 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)))

View 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'."