diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-03-03 03:49:06 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-03-03 03:49:06 +0000 |
commit | a865ce86b61d913c3e59ed1b191c01aa93cfefcc (patch) | |
tree | 5101592df3e810925cee539b250173862c88b9bc | |
parent | e741d51d6d0765653f530ae95e92121b49e4f146 (diff) | |
download | emacs-a865ce86b61d913c3e59ed1b191c01aa93cfefcc.tar.gz |
(gnus-update-group-mark-positions): Use mm-string-to-multibyte.
-rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/gnus/gnus-group.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index ed3cefe16c6..55e91b4f6d4 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca> + + * gnus-group.el (gnus-update-group-mark-positions): + Use mm-string-to-multibyte. + 2008-02-29 Andreas Seltenreich <andreas@gate450.dyndns.org> * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index ae12315172d..466a846c675 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el @@ -1188,8 +1188,8 @@ The following commands are available: (goto-char (point-min)) (setq gnus-group-mark-positions (list (cons 'process (and (search-forward - (mm-string-as-multibyte "\200") nil t) - (- (point) 2)))))))) + (mm-string-to-multibyte "\200") nil t) + (- (point) (point-min) 1)))))))) (defun gnus-mouse-pick-group (e) "Enter the group under the mouse pointer." @@ -4744,5 +4744,5 @@ Compacting group %s... (this may take a long time)" (provide 'gnus-group) -;;; arch-tag: 2eb5440f-0bca-4091-814c-e37817536af6 +;; arch-tag: 2eb5440f-0bca-4091-814c-e37817536af6 ;;; gnus-group.el ends here |