diff options
| author | Stephen Eglen | 1999-10-24 18:17:01 +0000 |
|---|---|---|
| committer | Stephen Eglen | 1999-10-24 18:17:01 +0000 |
| commit | 2454554e05a38f51f211428599aefead03ba095a (patch) | |
| tree | 8adb44df4007955454d3dc5f9caeb98163476849 | |
| parent | 322524b204ededaad4b001128412b537a6399d1a (diff) | |
| download | emacs-2454554e05a38f51f211428599aefead03ba095a.tar.gz emacs-2454554e05a38f51f211428599aefead03ba095a.zip | |
Added (require 'custom) and deleted :version line from
octave-auto-indent. Both these changes were made to make Octave lisp
files compatible with Emacs 19.34 and XEmacs 20.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/octave-mod.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a1c9002503b..e1c24976d29 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 1999-10-24 Stephen Eglen <stephen@gnu.org> | 1 | 1999-10-24 Stephen Eglen <stephen@gnu.org> |
| 2 | 2 | ||
| 3 | * progmodes/octave-mod.el (octave-auto-indent): Remove :version so | ||
| 4 | that Octave lisp files can also run under XEmacs 20. | ||
| 5 | (require 'custom) added so that files can run under Emacs 19.34. | ||
| 6 | |||
| 3 | * iswitchb.el (iswitchb-default-keybindings): No need to use | 7 | * iswitchb.el (iswitchb-default-keybindings): No need to use |
| 4 | read-kbd-macro in keybindings. | 8 | read-kbd-macro in keybindings. |
| 5 | 9 | ||
diff --git a/lisp/progmodes/octave-mod.el b/lisp/progmodes/octave-mod.el index 5552655a650..d96b2d11fb5 100644 --- a/lisp/progmodes/octave-mod.el +++ b/lisp/progmodes/octave-mod.el | |||
| @@ -40,6 +40,7 @@ | |||
| 40 | ;; `run-octave' for further information on usage and customization. | 40 | ;; `run-octave' for further information on usage and customization. |
| 41 | 41 | ||
| 42 | ;;; Code: | 42 | ;;; Code: |
| 43 | (require 'custom) | ||
| 43 | 44 | ||
| 44 | (defgroup octave nil | 45 | (defgroup octave nil |
| 45 | "Major mode for editing Octave source files." | 46 | "Major mode for editing Octave source files." |
| @@ -308,8 +309,7 @@ parenthetical grouping.") | |||
| 308 | (defcustom octave-auto-indent nil | 309 | (defcustom octave-auto-indent nil |
| 309 | "*Non-nil means indent line after a semicolon or space in Octave mode." | 310 | "*Non-nil means indent line after a semicolon or space in Octave mode." |
| 310 | :type 'boolean | 311 | :type 'boolean |
| 311 | :group 'octave | 312 | :group 'octave) |
| 312 | :version "20.3") | ||
| 313 | 313 | ||
| 314 | (defcustom octave-auto-newline nil | 314 | (defcustom octave-auto-newline nil |
| 315 | "*Non-nil means automatically newline after a semicolon in Octave mode." | 315 | "*Non-nil means automatically newline after a semicolon in Octave mode." |