diff options
| author | Leo Liu | 2013-05-01 00:27:36 +0800 |
|---|---|---|
| committer | Leo Liu | 2013-05-01 00:27:36 +0800 |
| commit | b12d33d7e4288780419d6cb45e28a08da06bd144 (patch) | |
| tree | bf3aa9ca91fdf6855e75fef2a103e72f67dd3b31 | |
| parent | 3d1c39faa4744f87838ecd07fdf01787d5235186 (diff) | |
| download | emacs-b12d33d7e4288780419d6cb45e28a08da06bd144.tar.gz emacs-b12d33d7e4288780419d6cb45e28a08da06bd144.zip | |
* progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
change.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/octave.el | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0513d69d0fc..3b1796a6421 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-04-30 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last | ||
| 4 | change. | ||
| 5 | |||
| 1 | 2013-04-30 Alan Mackenzie <acm@muc.de> | 6 | 2013-04-30 Alan Mackenzie <acm@muc.de> |
| 2 | 7 | ||
| 3 | Handle arbitrarily long C++ member initialisation lists. | 8 | Handle arbitrarily long C++ member initialisation lists. |
diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el index 32d265d2e80..22ecd514c5c 100644 --- a/lisp/progmodes/octave.el +++ b/lisp/progmodes/octave.el | |||
| @@ -568,11 +568,9 @@ definitions can also be stored in files and used in batch mode." | |||
| 568 | :type 'regexp | 568 | :type 'regexp |
| 569 | :group 'octave) | 569 | :group 'octave) |
| 570 | 570 | ||
| 571 | (defcustom inferior-octave-prompt-read-only t | 571 | (defcustom inferior-octave-prompt-read-only comint-prompt-read-only |
| 572 | "If non-nil, the Octave prompt is read only. | 572 | "If non-nil, the Octave prompt is read only. |
| 573 | The read only region includes the newline before the prompt. | 573 | See `comint-prompt-read-only' for details." |
| 574 | Setting this variable does not affect existing Octave runs. | ||
| 575 | This feature utilizes the `comint-prompt-read-only' variable." | ||
| 576 | :type 'boolean | 574 | :type 'boolean |
| 577 | :group 'octave | 575 | :group 'octave |
| 578 | :version "24.4") | 576 | :version "24.4") |