1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

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.
This commit is contained in:
Stephen Eglen 1999-10-24 18:17:01 +00:00
parent 322524b204
commit 2454554e05
2 changed files with 6 additions and 2 deletions

View 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.

View 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."