octave-auto-indent. Both these changes were made to make Octave lisp
files compatible with Emacs 19.34 and XEmacs 20.
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.
;; `run-octave' for further information on usage and customization.
;;; Code:
+(require 'custom)
(defgroup octave nil
"Major mode for editing Octave source files."
(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."