summaryrefslogtreecommitdiff
path: root/etc/NEWS.1-17
diff options
context:
space:
mode:
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))