diff options
| author | Juanma Barranquero | 2013-08-10 01:08:46 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2013-08-10 01:08:46 +0200 |
| commit | 156aab806b31ee669f60c52bec821892d75f6c27 (patch) | |
| tree | 527f8cc54bb40d26a817b675847f6fef969a7858 | |
| parent | 4517cbc2eafda2f636c677d9e172c09783a0ada2 (diff) | |
| download | emacs-156aab806b31ee669f60c52bec821892d75f6c27.tar.gz emacs-156aab806b31ee669f60c52bec821892d75f6c27.zip | |
lisp/ffap.el: Fix reference to variable thing-at-point-default-mail-uri-scheme.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/ffap.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7cbf733b45f..39018853285 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-08-09 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * ffap.el (ffap-url-at-point): Fix reference to variable | ||
| 4 | thing-at-point-default-mail-uri-scheme. | ||
| 5 | |||
| 1 | 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * subr.el (define-error): New function. | 8 | * subr.el (define-error): New function. |
diff --git a/lisp/ffap.el b/lisp/ffap.el index ee0b87e8f87..737de8b5991 100644 --- a/lisp/ffap.el +++ b/lisp/ffap.el | |||
| @@ -1073,7 +1073,7 @@ Assumes the buffer has not changed." | |||
| 1073 | (or (and (eq major-mode 'w3-mode) ; In a w3 buffer button? | 1073 | (or (and (eq major-mode 'w3-mode) ; In a w3 buffer button? |
| 1074 | (w3-view-this-url t)) | 1074 | (w3-view-this-url t)) |
| 1075 | (let ((thing-at-point-beginning-of-url-regexp ffap-url-regexp) | 1075 | (let ((thing-at-point-beginning-of-url-regexp ffap-url-regexp) |
| 1076 | (thing-at-point-default-mail-scheme ffap-foo-at-bar-prefix)) | 1076 | (thing-at-point-default-mail-uri-scheme ffap-foo-at-bar-prefix)) |
| 1077 | (thing-at-point-url-at-point t | 1077 | (thing-at-point-url-at-point t |
| 1078 | (if (use-region-p) | 1078 | (if (use-region-p) |
| 1079 | (cons (region-beginning) | 1079 | (cons (region-beginning) |