summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Eglen <stephen@gnu.org>1999-10-24 18:17:01 +0000
committerStephen Eglen <stephen@gnu.org>1999-10-24 18:17:01 +0000
commit2454554e05a38f51f211428599aefead03ba095a (patch)
tree8adb44df4007955454d3dc5f9caeb98163476849
parent322524b204ededaad4b001128412b537a6399d1a (diff)
downloademacs-2454554e05a38f51f211428599aefead03ba095a.tar.gz
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/ChangeLog4
-rw-r--r--lisp/progmodes/octave-mod.el4
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 @@
1999-10-24 Stephen Eglen <stephen@gnu.org>
+ * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
+ that Octave lisp files can also run under XEmacs 20.
+ (require 'custom) added so that files can run under Emacs 19.34.
+
* iswitchb.el (iswitchb-default-keybindings): No need to use
read-kbd-macro in keybindings.
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 @@
;; `run-octave' for further information on usage and customization.
;;; Code:
+(require 'custom)
(defgroup octave nil
"Major mode for editing Octave source files."
@@ -308,8 +309,7 @@ parenthetical grouping.")
(defcustom octave-auto-indent nil
"*Non-nil means indent line after a semicolon or space in Octave mode."
:type 'boolean
- :group 'octave
- :version "20.3")
+ :group 'octave)
(defcustom octave-auto-newline nil
"*Non-nil means automatically newline after a semicolon in Octave mode."