summaryrefslogtreecommitdiff
path: root/lisp/progmodes/cc-fonts.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2011-09-07 00:16:40 -0700
committerGlenn Morris <rgm@gnu.org>2011-09-07 00:16:40 -0700
commit7d0ee75c2543a3c67f995678ee38b0090c965bd8 (patch)
tree96d8758a4420882554fcc2023e67926e57f23580 /lisp/progmodes/cc-fonts.el
parentff7271b99367cbaf2fd6c345f6a53fbc7d0ba870 (diff)
downloademacs-7d0ee75c2543a3c67f995678ee38b0090c965bd8.tar.gz
* lisp/progmodes/cc-fonts.el: Remove trailing whitespace.
Diffstat (limited to 'lisp/progmodes/cc-fonts.el')
-rw-r--r--lisp/progmodes/cc-fonts.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/progmodes/cc-fonts.el b/lisp/progmodes/cc-fonts.el
index a0089dc1e24..1178a8a0b7e 100644
--- a/lisp/progmodes/cc-fonts.el
+++ b/lisp/progmodes/cc-fonts.el
@@ -208,7 +208,7 @@
;; from within a #if preprocessor construct.
(defvar c-font-lock-context nil)
(make-variable-buffer-local 'c-font-lock-context)
-
+
(defmacro c-put-font-lock-face (from to face)
;; Put a face on a region (overriding any existing face) in the way
;; font-lock would do it. In XEmacs that means putting an
@@ -408,7 +408,7 @@
;; establish a context for the current text when, e.g., a character
;; is typed on a C++ inheritance continuation line, or a jit-lock
;; chunk starts there.
- ;;
+ ;;
;; The new function works much like a matcher element in
;; `font-lock-keywords'. It cuts out a little bit of the overhead
;; compared to a real matcher. The main reason is however to pass the
@@ -482,7 +482,7 @@
;; This function does not do any hidden buffer changes, but the
;; generated functions will. (They are however used in places
;; covered by the font-lock context.)
- ;;
+ ;;
;; Note: Replace `byte-compile' with `eval' to debug the generated
;; lambda more easily.
(byte-compile
@@ -1427,7 +1427,7 @@ casts and declarations are fontified. Used on level 2 and higher."
;; to check this. If we get there, check whether a "typedef"
;; is there, then fontify the declarators accordingly.
(let ((decl-search-lim (max (- (point) 50000) (point-min)))
- paren-state bod-res encl-pos is-typedef
+ paren-state bod-res encl-pos is-typedef
c-recognize-knr-p) ; Strictly speaking, bogus, but it
; speeds up lisp.h tremendously.
(save-excursion
@@ -1525,7 +1525,7 @@ casts and declarations are fontified. Used on level 2 and higher."
;; Fontify the declarators of (nested) declarations we're in the middle of.
;; This is mainly for when a jit-lock etc. chunk starts inside the brace
;; block of a struct/union/class, etc.
- ;;
+ ;;
;; This function will be called from font-lock for a region bounded by POINT
;; and LIMIT, as though it were to identify a keyword for
;; font-lock-keyword-face. It always returns NIL to inhibit this and
@@ -1565,7 +1565,7 @@ casts and declarations are fontified. Used on level 2 and higher."
(when (c-safe (c-forward-sexp))
(c-forward-syntactic-ws)
(c-font-lock-declarators limit t in-typedef)))))))
-
+
(c-lang-defconst c-simple-decl-matchers
"Simple font lock matchers for types and declarations. These are used
on level 2 only and so aren't combined with `c-complex-decl-matchers'."
@@ -2513,7 +2513,7 @@ need for `pike-font-lock-extra-types'.")
(defconst gtkdoc-font-lock-doc-comments
(let ((symbol "[a-zA-Z0-9_]+")
(header "^ \\* "))
- `((,(concat header "\\(" symbol "\\):[ \t]*$")
+ `((,(concat header "\\(" symbol "\\):[ \t]*$")
1 ,c-doc-markup-face-name prepend nil)
(,(concat symbol "()")
0 ,c-doc-markup-face-name prepend nil)