diff options
author | Eli Zaretskii <eliz@is.elta.co.il> | 2004-02-16 19:35:20 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@is.elta.co.il> | 2004-02-16 19:35:20 +0000 |
commit | 279dffd67603744c98614b2cb906a1fc7a5008f6 (patch) | |
tree | 914590810aa37a20d292b411f8f235c4aeb0ff1f /lisp/progmodes/icon.el | |
parent | 8c094106a849093a750a4a6d29b6006f2cd2ba4b (diff) | |
download | emacs-279dffd67603744c98614b2cb906a1fc7a5008f6.tar.gz |
* net/telnet.el (telnet-interrupt-subjob): Move doc string to the correct place.
* progmodes/icon.el (icon-indent-command): Ditto.
* textmodes/paragraphs.el (repunctuate-sentences): Ditto.
Diffstat (limited to 'lisp/progmodes/icon.el')
-rw-r--r-- | lisp/progmodes/icon.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/icon.el b/lisp/progmodes/icon.el index eef93826367..694eea1285c 100644 --- a/lisp/progmodes/icon.el +++ b/lisp/progmodes/icon.el @@ -243,7 +243,6 @@ with no args, if that value is non-nil." (self-insert-command (prefix-numeric-value arg))))) (defun icon-indent-command (&optional whole-exp) - (interactive "P") "Indent current line as Icon code, or in some cases insert a tab character. If `icon-tab-always-indent' is non-nil (the default), always indent current line. Otherwise, indent the current line only if point is at the left margin @@ -253,6 +252,7 @@ A numeric argument, regardless of its value, means indent rigidly all the lines of the expression starting after point so that this line becomes properly indented. The relative indentation among the lines of the expression are preserved." + (interactive "P") (if whole-exp ;; If arg, always indent this line as Icon ;; and shift remaining lines of expression the same amount. |