aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/octave.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 01cc8e48847..17f3f4c0c1f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12013-11-22 Leo Liu <sdl.web@gmail.com> 12013-11-22 Leo Liu <sdl.web@gmail.com>
2 2
3 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
4 (Bug#15076)
5
62013-11-22 Leo Liu <sdl.web@gmail.com>
7
3 * progmodes/octave.el (inferior-octave-process-live-p): New helper. 8 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
4 (inferior-octave-startup, inferior-octave-check-process) 9 (inferior-octave-startup, inferior-octave-check-process)
5 (inferior-octave-track-window-width-change) 10 (inferior-octave-track-window-width-change)
diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el
index 6187e5f098f..3d68b57cd65 100644
--- a/lisp/progmodes/octave.el
+++ b/lisp/progmodes/octave.el
@@ -363,7 +363,8 @@ Non-nil means always go to the next Octave code line after sending."
363;; corresponding continuation lines). 363;; corresponding continuation lines).
364 364
365(defconst octave-operator-regexp 365(defconst octave-operator-regexp
366 (regexp-opt (apply 'append (mapcar 'cdr octave-operator-table)))) 366 (regexp-opt (remove "\n" (apply 'append
367 (mapcar 'cdr octave-operator-table)))))
367 368
368(defun octave-smie-backward-token () 369(defun octave-smie-backward-token ()
369 (let ((pos (point))) 370 (let ((pos (point)))