aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-06-22 06:39:46 +0000
committerGlenn Morris2009-06-22 06:39:46 +0000
commitc346e888d5dac20fce62e047a66d925c5b4f49e5 (patch)
tree4ad39f12c717164b3140f43767b121dea382c827
parentfca428feed2f9f6f94398134a98e15d052ce6ae0 (diff)
downloademacs-c346e888d5dac20fce62e047a66d925c5b4f49e5.tar.gz
emacs-c346e888d5dac20fce62e047a66d925c5b4f49e5.zip
Fix comment typo.
Add arch-tag.
-rw-r--r--lisp/fadr.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/fadr.el b/lisp/fadr.el
index cdbaa6c5e05..1bdf80268a0 100644
--- a/lisp/fadr.el
+++ b/lisp/fadr.el
@@ -1,4 +1,4 @@
1;;; fadr.el --- convinient access to recursive list structures 1;;; fadr.el --- convenient access to recursive list structures
2 2
3;; Copyright (C) 2009 Free Software Foundation, Inc. 3;; Copyright (C) 2009 Free Software Foundation, Inc.
4 4
@@ -24,7 +24,7 @@
24;; plain lists using a compact notation. 24;; plain lists using a compact notation.
25;; 25;;
26;; Consider the following list: 26;; Consider the following list:
27;; 27;;
28;; (setq basket '((apples . (((color . green) (taste . delicious)) ((color . red) (taste . disgusting)))))) 28;; (setq basket '((apples . (((color . green) (taste . delicious)) ((color . red) (taste . disgusting))))))
29;; 29;;
30;; Its contents may be accessed using `fadr-member': 30;; Its contents may be accessed using `fadr-member':
@@ -159,4 +159,6 @@ OBJECT."
159 (fadr-expand new-string object))) 159 (fadr-expand new-string object)))
160 160
161(provide 'fadr) 161(provide 'fadr)
162
163;; arch-tag: 4edced02-a5c3-4516-b278-3f85a12146ea
162;;; fadr.el ends here 164;;; fadr.el ends here