diff options
| author | Glenn Morris | 2008-04-10 07:46:40 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-04-10 07:46:40 +0000 |
| commit | 627bb5dcb5b217f6cfc31a2610fc94003e9d12b9 (patch) | |
| tree | 652a32195243cb563d1b1275fb2b4d77b6ddbb1e | |
| parent | 7d3541789341856c6be840b9d94317a873c27410 (diff) | |
| download | emacs-627bb5dcb5b217f6cfc31a2610fc94003e9d12b9.tar.gz emacs-627bb5dcb5b217f6cfc31a2610fc94003e9d12b9.zip | |
(toggle-truncate-lines): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/simple.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a7aeb668041..6f7c05ce28d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -24,6 +24,8 @@ | |||
| 24 | 24 | ||
| 25 | 2008-04-10 Glenn Morris <rgm@gnu.org> | 25 | 2008-04-10 Glenn Morris <rgm@gnu.org> |
| 26 | 26 | ||
| 27 | * simple.el (toggle-truncate-lines): Doc fix. | ||
| 28 | |||
| 27 | * Makefile.in (MH_E_DIR): New variable. | 29 | * Makefile.in (MH_E_DIR): New variable. |
| 28 | (MH_E_SRC): Restore variable removed 2008-03-13. | 30 | (MH_E_SRC): Restore variable removed 2008-03-13. |
| 29 | (mh-loaddefs.el): Depend on $MH_E_SRC. | 31 | (mh-loaddefs.el): Depend on $MH_E_SRC. |
diff --git a/lisp/simple.el b/lisp/simple.el index 9135ad50218..02d2d5c8779 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4738,7 +4738,8 @@ The variable `selective-display' has a separate value for each buffer." | |||
| 4738 | "Toggle whether to fold or truncate long lines for the current buffer. | 4738 | "Toggle whether to fold or truncate long lines for the current buffer. |
| 4739 | With prefix argument ARG, truncate long lines if ARG is positive, | 4739 | With prefix argument ARG, truncate long lines if ARG is positive, |
| 4740 | otherwise don't truncate them. Note that in side-by-side | 4740 | otherwise don't truncate them. Note that in side-by-side |
| 4741 | windows, truncation is always enabled." | 4741 | windows, this command has no effect if `truncate-partial-width-windows' |
| 4742 | is non-nil." | ||
| 4742 | (interactive "P") | 4743 | (interactive "P") |
| 4743 | (setq truncate-lines | 4744 | (setq truncate-lines |
| 4744 | (if (null arg) | 4745 | (if (null arg) |