mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
(octave-electric-space): Don't indent comments or strings if
octave-auto-indent is nil.
This commit is contained in:
parent
1c398d7410
commit
d9f9aa720f
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2005-12-10 John W. Eaton <jwe@octave.org>
|
||||
|
||||
* emacs/octave-mod.el (octave-electric-space): Don't indent
|
||||
comments or strings if octave-auto-indent is nil.
|
||||
|
||||
2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
|
||||
|
||||
* term/mac-win.el: Require url when compiling. Call
|
||||
|
|
|
|||
|
|
@ -1311,7 +1311,8 @@ Maybe expand abbrevs and blink matching block open keywords.
|
|||
Reindent the line of `octave-auto-indent' is non-nil."
|
||||
(interactive)
|
||||
(setq last-command-char ? )
|
||||
(if (not (octave-not-in-string-or-comment-p))
|
||||
(if (and octave-auto-indent
|
||||
(not (octave-not-in-string-or-comment-p)))
|
||||
(progn
|
||||
(indent-according-to-mode)
|
||||
(self-insert-command 1))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue