]> git.eshelyaron.com Git - emacs.git/commitdiff
Added (require 'custom) and deleted :version line from
authorStephen Eglen <stephen@gnu.org>
Sun, 24 Oct 1999 18:17:01 +0000 (18:17 +0000)
committerStephen Eglen <stephen@gnu.org>
Sun, 24 Oct 1999 18:17:01 +0000 (18:17 +0000)
octave-auto-indent.  Both these changes were made to make Octave lisp
files compatible with Emacs 19.34 and XEmacs 20.

lisp/ChangeLog
lisp/progmodes/octave-mod.el

index a1c9002503b9063d8a18f005902f454d6c84c524..e1c24976d29e91042db0694ad2b232d53be15672 100644 (file)
@@ -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.
 
index 5552655a650c5e029cda2b919173491c643e34de..d96b2d11fb5b65308cfb459c6ddffb04a14e3a00 100644 (file)
@@ -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."