diff options
| -rw-r--r-- | lisp/progmodes/cc-awk.el | 1 | ||||
| -rw-r--r-- | lisp/progmodes/cc-cmds.el | 3 |
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'." |