aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDani Moncayo2011-09-13 23:52:54 -0700
committerGlenn Morris2011-09-13 23:52:54 -0700
commitbf1af6c7863eb672781fef5725b097d2f1700618 (patch)
treee711ef22ece12d7748208ede52e25c21d9e6647e /doc
parent46888499da0bb61ce47d339275d5a0c757a02eb2 (diff)
downloademacs-bf1af6c7863eb672781fef5725b097d2f1700618.tar.gz
emacs-bf1af6c7863eb672781fef5725b097d2f1700618.zip
* doc/lispref/lists.texi (Sets And Lists): Fix typo. (tiny change)
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/lists.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 4873680d0a1..71dc8a8ff89 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12011-09-14 Dani Moncayo <dmoncayo@gmail.com> (tiny change)
2
3 * lists.texi (Sets And Lists): Fix typo. (Bug#9393)
4
12011-09-11 Juanma Barranquero <lekktu@gmail.com> 52011-09-11 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * processes.texi (Network Servers): Clarify what the process 7 * processes.texi (Network Servers): Clarify what the process
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index 7a530b602e0..056c924e72c 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -1454,7 +1454,7 @@ For example:
1454l 1454l
1455 @result{} ((2) (1)) 1455 @result{} ((2) (1))
1456;; @r{If you want to change @code{l} reliably,} 1456;; @r{If you want to change @code{l} reliably,}
1457;; @r{write @code{(setq l (delete elt l))}.} 1457;; @r{write @code{(setq l (delete '(2) l))}.}
1458@end group 1458@end group
1459@group 1459@group
1460(setq l '((2) (1) (2))) 1460(setq l '((2) (1) (2)))