+2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * ffap.el (ffap-prompter): Don't use the region.
+
2008-06-05 Sam Steingold <sds@gnu.org>
* vc-cvs.el (vc-cvs-registered): Consider a directory with a CVS
(ffap-read-file-or-url
(if ffap-url-regexp "Find file or URL: " "Find file: ")
(prog1
- (setq guess (or guess (ffap-guesser))) ; using ffap-alist here
+ (let ((mark-active nil))
+ ;; Don't use the region here, since it can be something
+ ;; completely unwieldy. If the user wants that, she could
+ ;; use M-w before and then C-y. --Stef
+ (setq guess (or guess (ffap-guesser)))) ; using ffap-alist here
(and guess (ffap-highlight))
)))
(ffap-highlight t)))