Mercurial > hg > xemacs-beta
diff lisp/gnus/gnus-start.el @ 18:d95e72db5c07 r19-15b92
Import from CVS: tag r19-15b92
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:49:43 +0200 |
parents | 0293115a14e9 |
children | 4103f0995bd7 |
line wrap: on
line diff
--- a/lisp/gnus/gnus-start.el Mon Aug 13 08:49:21 2007 +0200 +++ b/lisp/gnus/gnus-start.el Mon Aug 13 08:49:43 2007 +0200 @@ -1666,7 +1666,7 @@ (while (not (eobp)) (condition-case () (progn - (narrow-to-region (point) (point-at-eol)) + (narrow-to-region (point) (gnus-point-at-eol)) ;; group gets set to a symbol interned in the hash table ;; (what a hack!!) - jwz (setq group (let ((obarray hashtb)) (read cur))) @@ -1694,7 +1694,7 @@ (unless ignore-errors (gnus-message 3 "Warning - illegal active: %s" (buffer-substring - (point-at-bol) (point-at-eol)))))) + (gnus-point-at-bol) (gnus-point-at-eol)))))) (widen) (forward-line 1))))) @@ -1934,7 +1934,7 @@ ;; don't give a damn, frankly, my dear. (concat gnus-newsrc-options (buffer-substring - (point-at-bol) + (gnus-point-at-bol) ;; Options may continue on the next line. (or (and (re-search-forward "^[^ \t]" nil 'move) (progn (beginning-of-line) (point))) @@ -2005,8 +2005,8 @@ ;; The line was buggy. (setq group nil) (gnus-error 3.1 "Mangled line: %s" - (buffer-substring (point-at-bol) - (point-at-eol)))) + (buffer-substring (gnus-point-at-bol) + (gnus-point-at-eol)))) nil)) ;; Skip past ", ". Spaces are illegal in these ranges, but ;; we allow them, because it's a common mistake to put a @@ -2115,9 +2115,9 @@ (while (re-search-forward "[ \t]-n" nil t) (setq eol (or (save-excursion - (and (re-search-forward "[ \t]-n" (point-at-eol) t) + (and (re-search-forward "[ \t]-n" (gnus-point-at-eol) t) (- (point) 2))) - (point-at-eol))) + (gnus-point-at-eol))) ;; Search for all "words"... (while (re-search-forward "[^ \t,\n]+" eol t) (if (= (char-after (match-beginning 0)) ?!)