summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-11-23 22:50:44 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2012-11-23 22:50:44 -0800
commitcb6f5650490d5248d1f9e339a20e93c52a66572b (patch)
treedcd42c2df8c731b0fb8f3de50c5e92a16340134b
parent0917cc542f31c47ee6cc4ecff85dc2a698d98873 (diff)
downloademacs-cb6f5650490d5248d1f9e339a20e93c52a66572b.tar.gz
* loading.texi (Named Features): @ -> @@ to fix typo.
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/loading.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index b5c4318c404..3b4b04cfae5 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2012-11-24 Paul Eggert <eggert@cs.ucla.edu>
+
+ * loading.texi (Named Features): @ -> @@ to fix typo.
+
2012-11-24 Martin Rudalics <rudalics@gmx.at>
* windows.texi (Basic Windows): Fix typo.
diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi
index 54acd0b4d4c..9ca5314d790 100644
--- a/doc/lispref/loading.texi
+++ b/doc/lispref/loading.texi
@@ -729,7 +729,7 @@ file should call @code{provide} at the top level to add the feature to
(defun idlwave-complete-filename ()
"Use the comint stuff to complete a file name."
(require 'comint)
- (let* ((comint-file-name-chars "~/A-Za-z0-9+@:_.$#%=@{@}\\-")
+ (let* ((comint-file-name-chars "~/A-Za-z0-9+@@:_.$#%=@{@}\\-")
(comint-completion-addsuffix nil)
...)
(comint-dynamic-complete-filename)))