diff options
| author | Noah Friedman | 1998-09-11 01:38:30 +0000 |
|---|---|---|
| committer | Noah Friedman | 1998-09-11 01:38:30 +0000 |
| commit | e18b0c51c37e82036132f72001c9f5e4e7fb22ba (patch) | |
| tree | d59e40e225a1cb98b7bbedf51cf607d9b3b8b33e | |
| parent | 876bfee076d95360a42e3aebf9eba5dac92be527 (diff) | |
| download | emacs-e18b0c51c37e82036132f72001c9f5e4e7fb22ba.tar.gz emacs-e18b0c51c37e82036132f72001c9f5e4e7fb22ba.zip | |
(type-break-mode): remove :version field from defcustom declaration.
It's wreaking too much havoc with XEMacs and older versions of Emacs, which
share this code.
| -rw-r--r-- | lisp/type-break.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/type-break.el b/lisp/type-break.el index 0b2f4a440bf..433e3e478e7 100644 --- a/lisp/type-break.el +++ b/lisp/type-break.el | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | ;; Status: Works in GNU Emacs 19.25 or later, some versions of XEmacs | 8 | ;; Status: Works in GNU Emacs 19.25 or later, some versions of XEmacs |
| 9 | ;; Created: 1994-07-13 | 9 | ;; Created: 1994-07-13 |
| 10 | 10 | ||
| 11 | ;; $Id: type-break.el,v 1.16 1998/05/13 01:46:28 rms Exp rms $ | 11 | ;; $Id: type-break.el,v 1.17 1998/05/15 05:20:58 rms Exp $ |
| 12 | 12 | ||
| 13 | ;; This file is part of GNU Emacs. | 13 | ;; This file is part of GNU Emacs. |
| 14 | 14 | ||
| @@ -81,11 +81,10 @@ See the docstring for the `type-break-mode' command for more information. | |||
| 81 | You must modify via \\[customize] for this variable to have an effect." | 81 | You must modify via \\[customize] for this variable to have an effect." |
| 82 | :set (lambda (symbol value) | 82 | :set (lambda (symbol value) |
| 83 | (type-break-mode (if value 1 -1))) | 83 | (type-break-mode (if value 1 -1))) |
| 84 | :initialize 'custom-initialize-default | 84 | :initialize 'custom-initialize-default |
| 85 | :type 'boolean | 85 | :type 'boolean |
| 86 | :group 'type-break | 86 | :group 'type-break |
| 87 | :require 'type-break | 87 | :require 'type-break) |
| 88 | :version "20.3") | ||
| 89 | 88 | ||
| 90 | ;;;###autoload | 89 | ;;;###autoload |
| 91 | (defcustom type-break-interval (* 60 60) | 90 | (defcustom type-break-interval (* 60 60) |