diff options
| author | Stefan Monnier | 2005-09-01 13:59:17 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-09-01 13:59:17 +0000 |
| commit | 5ec3af5e766be41ac3ff30c0b2ffa44b43b5f0a4 (patch) | |
| tree | 72a288e57ef58694326a0cf221161283d13cd8ac | |
| parent | 00cec1673b37483d327cebce8399e3eac0bfacf7 (diff) | |
| download | emacs-5ec3af5e766be41ac3ff30c0b2ffa44b43b5f0a4.tar.gz emacs-5ec3af5e766be41ac3ff30c0b2ffa44b43b5f0a4.zip | |
(fast-lock) <defgroup>: Move from font-lock.el.
| -rw-r--r-- | lisp/obsolete/fast-lock.el | 39 |
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 @@ | |||
| 236 | (defmacro defcustom (symbol value doc &rest args) | 236 | (defmacro defcustom (symbol value doc &rest args) |
| 237 | `(defvar ,symbol ,value ,doc)))) | 237 | `(defvar ,symbol ,value ,doc)))) |
| 238 | 238 | ||
| 239 | ;(defun fast-lock-submit-bug-report () | 239 | ;;(defun fast-lock-submit-bug-report () |
| 240 | ; "Submit via mail a bug report on fast-lock.el." | 240 | ;; "Submit via mail a bug report on fast-lock.el." |
| 241 | ; (interactive) | 241 | ;; (interactive) |
| 242 | ; (let ((reporter-prompt-for-summary-p t)) | 242 | ;; (let ((reporter-prompt-for-summary-p t)) |
| 243 | ; (reporter-submit-bug-report "simon@gnu.org" "fast-lock 3.14" | 243 | ;; (reporter-submit-bug-report "simon@gnu.org" "fast-lock 3.14" |
| 244 | ; '(fast-lock-cache-directories fast-lock-minimum-size | 244 | ;; '(fast-lock-cache-directories fast-lock-minimum-size |
| 245 | ; fast-lock-save-others fast-lock-save-events fast-lock-save-faces | 245 | ;; fast-lock-save-others fast-lock-save-events fast-lock-save-faces |
| 246 | ; fast-lock-verbose) | 246 | ;; fast-lock-verbose) |
| 247 | ; nil nil | 247 | ;; nil nil |
| 248 | ; (concat "Hi Si., | 248 | ;; (concat "Hi Si., |
| 249 | ; | 249 | ;; |
| 250 | ;I want to report a bug. I've read the `Bugs' section of `Info' on Emacs, so I | 250 | ;;I want to report a bug. I've read the `Bugs' section of `Info' on Emacs, so I |
| 251 | ;know how to make a clear and unambiguous report. To reproduce the bug: | 251 | ;;know how to make a clear and unambiguous report. To reproduce the bug: |
| 252 | ; | 252 | ;; |
| 253 | ;Start a fresh editor via `" invocation-name " -no-init-file -no-site-file'. | 253 | ;;Start a fresh editor via `" invocation-name " -no-init-file -no-site-file'. |
| 254 | ;In the `*scratch*' buffer, evaluate:")))) | 254 | ;;In the `*scratch*' buffer, evaluate:")))) |
| 255 | |||
| 256 | (defgroup fast-lock nil | ||
| 257 | "Font Lock support mode to cache fontification." | ||
| 258 | :load 'fast-lock | ||
| 259 | :group 'font-lock) | ||
| 255 | 260 | ||
| 256 | (defvar fast-lock-mode nil) ; Whether we are turned on. | 261 | (defvar fast-lock-mode nil) ; Whether we are turned on. |
| 257 | (defvar fast-lock-cache-timestamp nil) ; For saving/reading. | 262 | (defvar fast-lock-cache-timestamp nil) ; For saving/reading. |
| @@ -862,5 +867,5 @@ See `fast-lock-get-face-properties'." | |||
| 862 | 867 | ||
| 863 | (provide 'fast-lock) | 868 | (provide 'fast-lock) |
| 864 | 869 | ||
| 865 | ;;; arch-tag: 638c431e-8cae-4538-80a1-963ff97d233e | 870 | ;; arch-tag: 638c431e-8cae-4538-80a1-963ff97d233e |
| 866 | ;;; fast-lock.el ends here | 871 | ;;; fast-lock.el ends here |