mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
* lisp/emacs-lisp/shortdoc.el (buffer): Add missing functions
Add preceding-char and char-before because following-char and char-after were already there.
This commit is contained in:
parent
a6ccb82fda
commit
f57297c8b2
1 changed files with 5 additions and 0 deletions
|
|
@ -984,8 +984,13 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'),
|
|||
(following-char
|
||||
:no-eval (following-char)
|
||||
:eg-result 67)
|
||||
(preceding-char
|
||||
:no-eval (preceding-char)
|
||||
:eg-result 38)
|
||||
(char-after
|
||||
:eval (char-after 45))
|
||||
(char-before
|
||||
:eval (char-before 13))
|
||||
(get-byte
|
||||
:no-eval (get-byte 45)
|
||||
:eg-result-string "#xff")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue