diff options
| -rw-r--r-- | lisp/progmodes/octave.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el index 7e14e59af5f..138c1948131 100644 --- a/lisp/progmodes/octave.el +++ b/lisp/progmodes/octave.el | |||
| @@ -373,7 +373,7 @@ Non-nil means always go to the next Octave code line after sending." | |||
| 373 | ((and (looking-at "[%#\n]") | 373 | ((and (looking-at "[%#\n]") |
| 374 | (not (or (save-excursion (skip-chars-backward " \t") | 374 | (not (or (save-excursion (skip-chars-backward " \t") |
| 375 | ;; Only add implicit ; when needed. | 375 | ;; Only add implicit ; when needed. |
| 376 | (or (bolp) (eq (char-before ?\;)))) | 376 | (or (bolp) (eq (char-before) ?\;))) |
| 377 | ;; Ignore it if it's within parentheses. | 377 | ;; Ignore it if it's within parentheses. |
| 378 | (let ((ppss (syntax-ppss))) | 378 | (let ((ppss (syntax-ppss))) |
| 379 | (and (nth 1 ppss) | 379 | (and (nth 1 ppss) |