]> code.delx.au - gnu-emacs/blobdiff - lisp/font-lock.el
Prefer directed to neutral quotes
[gnu-emacs] / lisp / font-lock.el
index 2fba6a80a23288ac395383b0a1dc341efe4b9802..5f12c6c129fb5dc63212708738cafccba2a82819 100644 (file)
@@ -696,12 +696,12 @@ pass nil for MODE and add the call to c-mode-hook.
 
 For example:
 
- (add-hook 'c-mode-hook
+ (add-hook \\='c-mode-hook
   (lambda ()
    (font-lock-add-keywords nil
-    '((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 'font-lock-warning-face prepend)
+    \\='((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 \\='font-lock-warning-face prepend)
       (\"\\\\\\=<\\\\(and\\\\|or\\\\|not\\\\)\\\\\\=>\" .
-       'font-lock-keyword-face)))))
+       \\='font-lock-keyword-face)))))
 
 The above procedure may fail to add keywords to derived modes if
 some involved major mode does not follow the standard conventions.