From 7511337a8a651f9b8a07576bbfafb0ace9e38d53 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 6 May 2015 16:00:22 -0400 Subject: [PATCH] Quieten cc-mode compilation * 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 | 1 + lisp/progmodes/cc-cmds.el | 3 +++ 2 files changed, 4 insertions(+) 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'." -- 2.39.2