summaryrefslogtreecommitdiff
path: root/lisp/obsolete
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-09-01 13:59:17 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-09-01 13:59:17 +0000
commit5ec3af5e766be41ac3ff30c0b2ffa44b43b5f0a4 (patch)
tree72a288e57ef58694326a0cf221161283d13cd8ac /lisp/obsolete
parent00cec1673b37483d327cebce8399e3eac0bfacf7 (diff)
downloademacs-5ec3af5e766be41ac3ff30c0b2ffa44b43b5f0a4.tar.gz
(fast-lock) <defgroup>: Move from font-lock.el.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r--lisp/obsolete/fast-lock.el39
1 files changed, 22 insertions, 17 deletions
diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el
index 4599442f6c7..8b7101b382a 100644
--- a/lisp/obsolete/fast-lock.el
+++ b/lisp/obsolete/fast-lock.el
@@ -236,22 +236,27 @@
(defmacro defcustom (symbol value doc &rest args)
`(defvar ,symbol ,value ,doc))))
-;(defun fast-lock-submit-bug-report ()
-; "Submit via mail a bug report on fast-lock.el."
-; (interactive)
-; (let ((reporter-prompt-for-summary-p t))
-; (reporter-submit-bug-report "simon@gnu.org" "fast-lock 3.14"
-; '(fast-lock-cache-directories fast-lock-minimum-size
-; fast-lock-save-others fast-lock-save-events fast-lock-save-faces
-; fast-lock-verbose)
-; nil nil
-; (concat "Hi Si.,
-;
-;I want to report a bug. I've read the `Bugs' section of `Info' on Emacs, so I
-;know how to make a clear and unambiguous report. To reproduce the bug:
-;
-;Start a fresh editor via `" invocation-name " -no-init-file -no-site-file'.
-;In the `*scratch*' buffer, evaluate:"))))
+;;(defun fast-lock-submit-bug-report ()
+;; "Submit via mail a bug report on fast-lock.el."
+;; (interactive)
+;; (let ((reporter-prompt-for-summary-p t))
+;; (reporter-submit-bug-report "simon@gnu.org" "fast-lock 3.14"
+;; '(fast-lock-cache-directories fast-lock-minimum-size
+;; fast-lock-save-others fast-lock-save-events fast-lock-save-faces
+;; fast-lock-verbose)
+;; nil nil
+;; (concat "Hi Si.,
+;;
+;;I want to report a bug. I've read the `Bugs' section of `Info' on Emacs, so I
+;;know how to make a clear and unambiguous report. To reproduce the bug:
+;;
+;;Start a fresh editor via `" invocation-name " -no-init-file -no-site-file'.
+;;In the `*scratch*' buffer, evaluate:"))))
+
+(defgroup fast-lock nil
+ "Font Lock support mode to cache fontification."
+ :load 'fast-lock
+ :group 'font-lock)
(defvar fast-lock-mode nil) ; Whether we are turned on.
(defvar fast-lock-cache-timestamp nil) ; For saving/reading.
@@ -862,5 +867,5 @@ See `fast-lock-get-face-properties'."
(provide 'fast-lock)
-;;; arch-tag: 638c431e-8cae-4538-80a1-963ff97d233e
+;; arch-tag: 638c431e-8cae-4538-80a1-963ff97d233e
;;; fast-lock.el ends here