]> git.eshelyaron.com Git - emacs.git/commitdiff
(quickurl-url-file): Run through convert-standard-filename.
authorEli Zaretskii <eliz@gnu.org>
Sun, 17 Jun 2001 11:47:54 +0000 (11:47 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 17 Jun 2001 11:47:54 +0000 (11:47 +0000)
(quickurl-list-populate-buffer): Add help-echo to mouse-highlighted text.
(top level): Update Dave's URL.

lisp/ChangeLog
lisp/net/quickurl.el

index e1401575946d88ea1219ef02e15c87e82de3dfe0..2939f0e743f58af67db9f8d9c991941511f996d8 100644 (file)
@@ -1,5 +1,11 @@
 2001-06-17  Eli Zaretskii  <eliz@is.elta.co.il>
 
+       * net/quickurl.el (quickurl-url-file): Run through
+       convert-standard-filename.
+       (quickurl-list-populate-buffer): Add help-echo to
+       mouse-highlighted text.
+       (top-level): Update Dave's URL.
+
        * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
        mouse-highlighted text.
 
index 6d47bcb65b9b04eb4f3928ad2d6ad272e9444e73..4076c5ae7f27c278581dcf3cf996230a25952a9e 100644 (file)
@@ -1,6 +1,6 @@
 ;;; quickurl.el --- Insert an URL based on text at point in buffer.
 
-;; Copyright (C) 1999,2000 Free Software Foundation, Inc.
+;; Copyright (C) 1999,2000,2001 Free Software Foundation, Inc.
 
 ;; Author: Dave Pearson <davep@davep.org>
 ;; Maintainer: Dave Pearson <davep@davep.org>
@@ -59,7 +59,7 @@
 ;; (("GNU"    . "http://www.gnu.org/")
 ;;  ("FSF"      "http://www.fsf.org/" "The Free Software Foundation")
 ;;  ("emacs"  . "http://www.emacs.org/")
-;;  ("hagbard"  "http://www.hagbard.demon.co.uk" "Hagbard's World"))
+;;  ("davep"    "http://www.davep.org/" "Dave's homepage"))
 ;;
 ;; In case you're wondering about the mixture of cons cells and lists,
 ;; quickurl started life using just the cons cells, there were no comments.
   :group  'abbrev
   :prefix "quickurl-")
 
-(defcustom quickurl-url-file "~/.quickurls"
+(defcustom quickurl-url-file (convert-standard-filename "~/.quickurls")
   "*File that contains the URL list."
   :type  'file
   :group 'quickurl)
@@ -482,8 +482,9 @@ The key bindings for `quickurl-list-mode' are:
             do (let ((start (point)))
                  (insert (format fmt (quickurl-url-description url)
                                  (quickurl-url-url url)))
-                 (put-text-property start (1- (point))
-                                    'mouse-face 'highlight)))
+                 (add-text-properties start (1- (point))
+                                    '(mouse-face highlight
+                                     help-echo "mouse-2: insert this URL"))))
       (setf (point) (point-min)))))
 
 (defun quickurl-list-add-url (word url comment)