summaryrefslogtreecommitdiff
path: root/lisp/net/quickurl.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-04 13:24:35 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-04 13:24:35 +0000
commita1506d2977a8c2eb982ad0b59416009cdfaa6f51 (patch)
tree3cbb868ad6eb3b188d5064389538c490c124d8be /lisp/net/quickurl.el
parentf1180544bb5ff44cdb45b8734734294b0a2fa7a4 (diff)
downloademacs-a1506d2977a8c2eb982ad0b59416009cdfaa6f51.tar.gz
Trailing whitepace deleted.
Diffstat (limited to 'lisp/net/quickurl.el')
-rw-r--r--lisp/net/quickurl.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/net/quickurl.el b/lisp/net/quickurl.el
index 0751aec4286..22794a41078 100644
--- a/lisp/net/quickurl.el
+++ b/lisp/net/quickurl.el
@@ -264,7 +264,7 @@ It also restores point after the `read'."
(save-excursion
(setf (point) (point-min))
(setq quickurl-urls (funcall quickurl-sort-function (read buffer)))))
-
+
(defun quickurl-load-urls ()
"Load the contents of `quickurl-url-file' into `quickurl-urls'."
(when (file-exists-p quickurl-url-file)
@@ -280,7 +280,7 @@ It also restores point after the `read'."
(pp quickurl-urls)
(princ quickurl-postfix)
(write-region (point-min) (point-max) quickurl-url-file nil 0))))
-
+
(defun quickurl-find-url (lookup)
"Return URL associated with key LOOKUP.
@@ -327,7 +327,7 @@ buffer, this default action can be modifed via
(let ((url (quickurl-find-url lookup)))
(when url
(quickurl-insert url))))
-
+
(defun quickurl-grab-url ()
"Attempt to grab a word/url pair from point in the current buffer.
@@ -370,7 +370,7 @@ is decided."
(read-string "URL: " (quickurl-url-url word-url))
(read-string "Comment: " (quickurl-url-comment word-url)))))
(if (zerop (length word))
- (error "You must specify a WORD for lookup")
+ (error "You must specify a WORD for lookup")
(quickurl-load-urls)
(let* ((current-url (quickurl-find-url word))
(add-it (if current-url
@@ -546,7 +546,7 @@ TYPE dictates what will be inserted, options are:
(quickurl-list-make-inserter with-lookup)
(quickurl-list-make-inserter with-desc)
(quickurl-list-make-inserter lookup)
-
+
(provide 'quickurl)
;;; quickurl.el ends here