diff options
| author | Leo Liu | 2013-05-07 12:53:31 +0800 |
|---|---|---|
| committer | Leo Liu | 2013-05-07 12:53:31 +0800 |
| commit | 150194c32f69feee7aae11d4ef21e8034d48b136 (patch) | |
| tree | 9bfc755c8f3c35ce8400a9a2562c238e7d0102b4 | |
| parent | ceb57e59976a540dd38b1122507b75af31a103c3 (diff) | |
| download | emacs-150194c32f69feee7aae11d4ef21e8034d48b136.tar.gz emacs-150194c32f69feee7aae11d4ef21e8034d48b136.zip | |
* progmodes/octave.el (octave-smie-forward-token): Fix typo.
| -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) |