aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-10-18 08:41:46 +0000
committerJuanma Barranquero2002-10-18 08:41:46 +0000
commit3d8c35d3b0c9c1302d77ed5abbed271360c6eedc (patch)
treea42f87fc8210ad15bcaeeebd37bb86d02f6a803b
parent711a4be3eb1239a3a1af246214ebfebbf034b9e6 (diff)
downloademacs-3d8c35d3b0c9c1302d77ed5abbed271360c6eedc.tar.gz
emacs-3d8c35d3b0c9c1302d77ed5abbed271360c6eedc.zip
(gnus-parse-netrc): Fix typo.
-rw-r--r--lisp/gnus/gnus-util.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el
index 329d81a2a33..13bed1d99ed 100644
--- a/lisp/gnus/gnus-util.el
+++ b/lisp/gnus/gnus-util.el
@@ -804,7 +804,7 @@ ARG is passed to the first function."
804;;; 804;;;
805 805
806(defun gnus-parse-netrc (file) 806(defun gnus-parse-netrc (file)
807 "Parse FILE and return an list of all entries in the file." 807 "Parse FILE and return a list of all entries in the file."
808 (when (file-exists-p file) 808 (when (file-exists-p file)
809 (with-temp-buffer 809 (with-temp-buffer
810 (let ((tokens '("machine" "default" "login" 810 (let ((tokens '("machine" "default" "login"
@@ -984,7 +984,7 @@ Entries without port tokens default to DEFAULTPORT."
984 (property value start end properties &optional object) 984 (property value start end properties &optional object)
985 "Like `gnus-add-text-properties', only applied on where PROPERTY is VALUE." 985 "Like `gnus-add-text-properties', only applied on where PROPERTY is VALUE."
986 (let (point) 986 (let (point)
987 (while (and start 987 (while (and start
988 (setq point (text-property-not-all start end property value))) 988 (setq point (text-property-not-all start end property value)))
989 (gnus-add-text-properties start point properties object) 989 (gnus-add-text-properties start point properties object)
990 (setq start (text-property-any point end property value))) 990 (setq start (text-property-any point end property value)))
@@ -995,7 +995,7 @@ Entries without port tokens default to DEFAULTPORT."
995 (property value start end properties &optional object) 995 (property value start end properties &optional object)
996 "Like `remove-text-properties', only applied on where PROPERTY is VALUE." 996 "Like `remove-text-properties', only applied on where PROPERTY is VALUE."
997 (let (point) 997 (let (point)
998 (while (and start 998 (while (and start
999 (setq point (text-property-not-all start end property value))) 999 (setq point (text-property-not-all start end property value)))
1000 (remove-text-properties start point properties object) 1000 (remove-text-properties start point properties object)
1001 (setq start (text-property-any point end property value))) 1001 (setq start (text-property-any point end property value)))