aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Innes1999-02-25 11:35:45 +0000
committerAndrew Innes1999-02-25 11:35:45 +0000
commit06789559b28c8f60d5db46b1306c4c152b7e5536 (patch)
tree3b1763a9765e7614936f699c92ca41f8b2855910
parentd3c004965bb440bdb595e60a57176bd3ad3616f7 (diff)
downloademacs-06789559b28c8f60d5db46b1306c4c152b7e5536.tar.gz
emacs-06789559b28c8f60d5db46b1306c4c152b7e5536.zip
(command-line) [windows-nt]: Fix typo in regexp
checking for .emacs[.el[c]].
-rw-r--r--lisp/startup.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 950cf702ffc..66695a08cd0 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -708,7 +708,7 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
708 ((eq system-type 'ms-dos) 708 ((eq system-type 'ms-dos)
709 (concat "~" init-file-user "/_emacs")) 709 (concat "~" init-file-user "/_emacs"))
710 ((eq system-type 'windows-nt) 710 ((eq system-type 'windows-nt)
711 (if (directory-files "~" nil "^\.emacs\\(\.elc?\\)?$") 711 (if (directory-files "~" nil "^\\.emacs\\(\\.elc?\\)?$")
712 "~/.emacs" 712 "~/.emacs"
713 "~/_emacs")) 713 "~/_emacs"))
714 ((eq system-type 'vax-vms) 714 ((eq system-type 'vax-vms)