From: Richard M. Stallman Date: Wed, 2 Aug 1995 18:47:32 +0000 (+0000) Subject: (archive-remote-regexp): Don't accept hostnames X-Git-Tag: emacs-19.34~3104 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6eb236e7193583a15d1b0154f5ca078cfab29ed9;p=emacs.git (archive-remote-regexp): Don't accept hostnames ending in period. (See previous ange-ftp.el change.) --- diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index a6ba200e44d..b31a59fbab1 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el @@ -108,7 +108,7 @@ and do The Right Thing.") (or (getenv "TMPDIR") (getenv "TMP") "/tmp")) "*Directory for temporary files made by arc-mode.el") -(defvar archive-remote-regexp "^/[^/:]*[^/:]:" +(defvar archive-remote-regexp "^/[^/:]*[^/:.]:" "*Regexp recognizing archive files names that are not local (i.e., are not proper file names outside Emacs). A local copy a the archive will be used when updating.")