diff options
author | Yuuki Harano <masm+github@masm11.me> | 2021-01-03 16:33:29 +0900 |
---|---|---|
committer | Yuuki Harano <masm+github@masm11.me> | 2021-01-03 16:33:29 +0900 |
commit | 44f7f57c6833149799539c5e0abcadf4d7d61d43 (patch) | |
tree | b9bbe6e261c80333dfacb62f7288cc9b37bbf588 /lisp/emacs-lisp/shortdoc.el | |
parent | 0af4e7587e1b5ac9066e17b875952cb5a16e63c0 (diff) | |
parent | 825b4ec338e82869dc656c7041ab2483b6c22479 (diff) | |
download | emacs-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.el | 8 |
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)))) |