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 + + * loading.texi (Named Features): @ -> @@ to fix typo. + 2012-11-24 Martin Rudalics * 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)))