diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-07-08 05:46:10 -0400 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-07-08 05:46:10 -0400 |
commit | 375dac936fcca902874ecfd1c57b713581641725 (patch) | |
tree | 14f0666d31d71755346b9a09209fb21d5ddf44a2 /lisp/emacs-lisp/shortdoc.el | |
parent | aad13e61dbf949ca6dea1ff492baca82f40a5738 (diff) | |
parent | 600b90ed56854e8460038ca6b8aaa1feae4ab2c9 (diff) | |
download | emacs-375dac936fcca902874ecfd1c57b713581641725.tar.gz emacs-375dac936fcca902874ecfd1c57b713581641725.tar.bz2 emacs-375dac936fcca902874ecfd1c57b713581641725.zip |
Merge from origin/emacs-29
600b90ed568 Mark failing icalendar test as unstable (bug#56241)
f8a918c9778 ; * src/coding.c (Fcoding_system_put): Improve doc string.
40f84e906f6 ; * doc/lispref/keymaps.texi (Key Binding Commands): Fix ...
502a7800319 ; Improve documentation of 'vertical-motion' in ELisp manual
0d90873fa41 ; * src/indent.c (Fvertical_motion): Doc fix.
9b38773a20b ; * lisp/dired.el (dired-no-confirm): Doc fix. (Bug#64493)
a30ebe7a556 ; Improve documentation of key-binding commands
c3fefb2b3ae Improve natnump shortdoc
244d4c837ab correct info documentation of benchmark-call
67def1f5502 * lisp/progmodes/grep.el (rgrep): Fix docstring.
8da2091362d ; Fix documentation of minibuffer-completion commands
aa030698cef ; Fix typos in documented names of keymap-* functions
a9b46bb25df Include a help-echo for flymake's modeline counters
37ed3d15f38 Avoid errors in completion due to 'completion-regexp-list'
15ff8761777 ; * lisp/register.el (register-val-describe): Doc fix.
fe7b909c16c ; Fix two typos in recent changes in the manual
7a74b8c3277 C Mode: Don't fontify foo globally as type due to "struct...
823bf6bdb1a * lisp/rect.el (rectangle--duplicate-right): Fix rectangl...
e339d0080d3 ; * test/lisp/misc-tests.el (ert): require misc to avoid ...
# Conflicts:
# lisp/rect.el
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index f5897385262..e23db8e999c 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -1251,6 +1251,10 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'), :eval (>= 3 2 2 1)) (zerop :eval (zerop 0)) + (natnump + :eval (natnump -1) + :eval (natnump 0) + :eval (natnump 23)) (cl-plusp :eval (cl-plusp 0) :eval (cl-plusp 1)) @@ -1261,9 +1265,6 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'), :eval (cl-oddp 3)) (cl-evenp :eval (cl-evenp 6)) - (natnump - :eval (natnump -1) - :eval (natnump 23)) (bignump :eval (bignump 4) :eval (bignump (expt 2 90))) |