diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-04-30 16:28:52 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-04-30 16:28:52 +0200 |
commit | 2824c587e9749a8f350f1d3dddd65176b4561dcb (patch) | |
tree | 01b2f2482714fe438074ed83551006359309f69d /lisp/emacs-lisp | |
parent | e77b8d84b4161f2cf8720dec2bf44a3e50134398 (diff) | |
download | emacs-2824c587e9749a8f350f1d3dddd65176b4561dcb.tar.gz emacs-2824c587e9749a8f350f1d3dddd65176b4561dcb.tar.bz2 emacs-2824c587e9749a8f350f1d3dddd65176b4561dcb.zip |
Doc fix for insert-pair-alist
* lisp/emacs-lisp/lisp.el (insert-pair-alist): Say what
COMMAND-CHAR is (bug#18809).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 764d01ce6db..ea7cce67be7 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -587,7 +587,11 @@ Interactively, the behavior depends on `narrow-to-defun-include-comments'." Each element looks like (OPEN-CHAR CLOSE-CHAR) or (COMMAND-CHAR OPEN-CHAR CLOSE-CHAR). The characters OPEN-CHAR and CLOSE-CHAR of the pair whose key is equal to the last input character with -or without modifiers, are inserted by `insert-pair'.") +or without modifiers, are inserted by `insert-pair'. + +If COMMAND-CHAR is specified, it is a character that triggers the +insertion of the open/close pair, and COMMAND-CHAR itself isn't +inserted.") (defun insert-pair (&optional arg open close) "Enclose following ARG sexps in a pair of OPEN and CLOSE characters. |