diff options
| author | Stefan Monnier | 2017-07-04 22:27:51 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2017-07-04 22:27:51 -0400 |
| commit | dbc9b153929eab3c97d317636a9d6c2db53afb96 (patch) | |
| tree | 69c00afe8ab78a427e5cc304f8e053633e0743eb | |
| parent | 71e14f3b61758d37c84488d8512287b4e3c3ded5 (diff) | |
| download | emacs-dbc9b153929eab3c97d317636a9d6c2db53afb96.tar.gz emacs-dbc9b153929eab3c97d317636a9d6c2db53afb96.zip | |
* lisp/progmodes/cc-defs.el (lookup-syntax-properties): Move ...
... before first use
| -rw-r--r-- | lisp/progmodes/cc-defs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el index 85a4085e490..eb7bde0f767 100644 --- a/lisp/progmodes/cc-defs.el +++ b/lisp/progmodes/cc-defs.el | |||
| @@ -367,6 +367,8 @@ to it is returned. This function does not modify the point or the mark." | |||
| 367 | (t (error "Unknown buffer position requested: %s" position)))) | 367 | (t (error "Unknown buffer position requested: %s" position)))) |
| 368 | (point)))) | 368 | (point)))) |
| 369 | 369 | ||
| 370 | (defvar lookup-syntax-properties) ;XEmacs. | ||
| 371 | |||
| 370 | (eval-and-compile | 372 | (eval-and-compile |
| 371 | ;; Constant to decide at compilation time whether to use category | 373 | ;; Constant to decide at compilation time whether to use category |
| 372 | ;; properties. Currently (2010-03) they're available only on GNU Emacs. | 374 | ;; properties. Currently (2010-03) they're available only on GNU Emacs. |
| @@ -1832,8 +1834,6 @@ non-nil, a caret is prepended to invert the set." | |||
| 1832 | 1834 | ||
| 1833 | (cc-bytecomp-defvar open-paren-in-column-0-is-defun-start) | 1835 | (cc-bytecomp-defvar open-paren-in-column-0-is-defun-start) |
| 1834 | 1836 | ||
| 1835 | (defvar lookup-syntax-properties) ;XEmacs. | ||
| 1836 | |||
| 1837 | (defconst c-emacs-features | 1837 | (defconst c-emacs-features |
| 1838 | (let (list) | 1838 | (let (list) |
| 1839 | 1839 | ||