summaryrefslogtreecommitdiff
path: root/etc/NEWS.1-17
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2019-04-12 12:37:00 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2019-04-12 12:37:00 -0400
commit896e5802160c2797e689a7565599ebb1bd171295 (patch)
tree537a66725af4b6f8cc64a17003bdeb631f5245f9 /etc/NEWS.1-17
parent2bc2a3ecaf3d1992cbc8b14609c16ebd4498b155 (diff)
downloademacs-896e5802160c2797e689a7565599ebb1bd171295.tar.gz
* lisp/help-fns.el (help-fns-describe-variable-functions): New hook
(help-fns--compiler-macro, help-fns--parent-mode, help-fns--obsolete) (help-fns--interactive-only): Indent output by 2 spaces. (help-fns--side-effects): New function extracted from describe-function-1. (help-fns-describe-function-functions): Use it. (help-fns--first-release, help-fns--mention-first-release): New functions. (help-fns-function-description-header): Keymaps and macros can't be interactive. (help-fns--ensure-empty-line): New function. (describe-function-1): Use it. (help-fns--var-safe-local, help-fns--var-risky) (help-fns--var-ignored-local, help-fns--var-file-local) (help-fns--var-watchpoints, help-fns--var-obsolete) (help-fns--var-alias, help-fns--var-bufferlocal): New functions, extacted from describe-variable. (describe-variable): Run help-fns-describe-variable-functions instead.
Diffstat (limited to 'etc/NEWS.1-17')
-rw-r--r--etc/NEWS.1-174
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/NEWS.1-17 b/etc/NEWS.1-17
index 758ef65ed95..1ce36fe99da 100644
--- a/etc/NEWS.1-17
+++ b/etc/NEWS.1-17
@@ -2339,9 +2339,9 @@ It's Beat CCA Week.
** Lisp macros now exist.
For example, you can write
- (defmacro cadr (arg) (list 'car (list 'cdr arg)))
+ (defmacro mycadr (arg) (list 'car (list 'cdr arg)))
and then the expression
- (cadr foo)
+ (mycadr foo)
will expand into
(car (cdr foo))