aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2018-02-17 19:43:13 +0100
committerMichael Albinus2018-02-17 19:43:13 +0100
commit6537f996c1115ac5debee8ea1653a1bedf65d597 (patch)
treec522f8c7d9819a468bbaad2411f0926e964905ed
parenteb94588e3ca7b63f57d0aa1cd4938c8e988a6d04 (diff)
downloademacs-6537f996c1115ac5debee8ea1653a1bedf65d597.tar.gz
emacs-6537f996c1115ac5debee8ea1653a1bedf65d597.zip
; Fix oversight from last commit
* doc/emacs/maintaining.texi (Select Tags Table): Use proper "~/.emacs.d" directory.
-rw-r--r--doc/emacs/maintaining.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi
index aa3ac3b9920..23e08a58e88 100644
--- a/doc/emacs/maintaining.texi
+++ b/doc/emacs/maintaining.texi
@@ -2621,13 +2621,13 @@ current list, it is used @emph{as well as} the others.
2621@example 2621@example
2622@group 2622@group
2623(setq tags-table-list 2623(setq tags-table-list
2624 '("~/emacs.d/init.el" "/usr/local/lib/emacs/src")) 2624 '("~/.emacs.d" "/usr/local/lib/emacs/src"))
2625@end group 2625@end group
2626@end example 2626@end example
2627 2627
2628@noindent 2628@noindent
2629This tells the tags commands to look at the @file{TAGS} files in your 2629This tells the tags commands to look at the @file{TAGS} files in your
2630@file{~/emacs} directory and in the @file{/usr/local/lib/emacs/src} 2630@file{~/.emacs.d} directory and in the @file{/usr/local/lib/emacs/src}
2631directory. The order depends on which file you are in and which tags 2631directory. The order depends on which file you are in and which tags
2632table mentions that file. 2632table mentions that file.
2633 2633