summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/shortdoc.el
diff options
context:
space:
mode:
authorYuuki Harano <masm+github@masm11.me>2021-01-03 16:33:29 +0900
committerYuuki Harano <masm+github@masm11.me>2021-01-03 16:33:29 +0900
commit44f7f57c6833149799539c5e0abcadf4d7d61d43 (patch)
treeb9bbe6e261c80333dfacb62f7288cc9b37bbf588 /lisp/emacs-lisp/shortdoc.el
parent0af4e7587e1b5ac9066e17b875952cb5a16e63c0 (diff)
parent825b4ec338e82869dc656c7041ab2483b6c22479 (diff)
downloademacs-44f7f57c6833149799539c5e0abcadf4d7d61d43.tar.gz
emacs-44f7f57c6833149799539c5e0abcadf4d7d61d43.tar.bz2
emacs-44f7f57c6833149799539c5e0abcadf4d7d61d43.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r--lisp/emacs-lisp/shortdoc.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 9d183e0d4e9..698467e939e 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -1,6 +1,6 @@
;;; shortdoc.el --- Short function summaries -*- lexical-binding: t -*-
-;; Copyright (C) 2020 Free Software Foundation, Inc.
+;; Copyright (C) 2020-2021 Free Software Foundation, Inc.
;; Keywords: lisp, help
;; Package: emacs
@@ -618,6 +618,12 @@ There can be any number of :example/:result elements."
"Data About Lists"
(length
:eval (length '(a b c)))
+ (length<
+ :eval (length< '(a b c) 1))
+ (length>
+ :eval (length> '(a b c) 1))
+ (length=
+ :eval (length> '(a b c) 3))
(safe-length
:eval (safe-length '(a b c))))