1
Fork 0
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:
Mattias Engdegård 2022-08-21 15:48:08 +02:00
parent a6ccb82fda
commit f57297c8b2

View file

@ -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")