aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2015-05-06 16:00:22 -0400
committerGlenn Morris2015-05-06 16:00:22 -0400
commit7511337a8a651f9b8a07576bbfafb0ace9e38d53 (patch)
tree6a2a2a311eec54ab68c974c1e88cde5cbc9b9803
parent1ca93e01841975dab67fbc0f4cb92aff94a654d7 (diff)
downloademacs-7511337a8a651f9b8a07576bbfafb0ace9e38d53.tar.gz
emacs-7511337a8a651f9b8a07576bbfafb0ace9e38d53.zip
Quieten cc-mode compilation
* lisp/progmodes/cc-awk.el (c-forward-sws): * lisp/progmodes/cc-cmds.el (c-forward-subword, c-backward-subword): Declare.
-rw-r--r--lisp/progmodes/cc-awk.el1
-rw-r--r--lisp/progmodes/cc-cmds.el3
2 files changed, 4 insertions, 0 deletions
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 @@
61(cc-bytecomp-defun c-backward-token-1) 61(cc-bytecomp-defun c-backward-token-1)
62(cc-bytecomp-defun c-beginning-of-statement-1) 62(cc-bytecomp-defun c-beginning-of-statement-1)
63(cc-bytecomp-defun c-backward-sws) 63(cc-bytecomp-defun c-backward-sws)
64(cc-bytecomp-defun c-forward-sws)
64 65
65(defvar awk-mode-syntax-table 66(defvar awk-mode-syntax-table
66 (let ((st (make-syntax-table))) 67 (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
1317 (autoload 'c-subword-mode "cc-subword" 1317 (autoload 'c-subword-mode "cc-subword"
1318 "Mode enabling subword movement and editing keys." t))) 1318 "Mode enabling subword movement and editing keys." t)))
1319 1319
1320(declare-function c-forward-subword "ext:cc-subword" (&optional arg))
1321(declare-function c-backward-subword "ext:cc-subword" (&optional arg))
1322
1320;; "nomenclature" functions + c-scope-operator. 1323;; "nomenclature" functions + c-scope-operator.
1321(defun c-forward-into-nomenclature (&optional arg) 1324(defun c-forward-into-nomenclature (&optional arg)
1322 "Compatibility alias for `c-forward-subword'." 1325 "Compatibility alias for `c-forward-subword'."