X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/b5553d47e2512ca4cb494e9c8128919a008096f0..b6bd159922608fa474026837771d63bf7eadcf97:/lisp/mh-e/mh-seq.el diff --git a/lisp/mh-e/mh-seq.el b/lisp/mh-e/mh-seq.el index 5f5367cdb8..fc3e5c0814 100644 --- a/lisp/mh-e/mh-seq.el +++ b/lisp/mh-e/mh-seq.el @@ -1,8 +1,6 @@ ;;; mh-seq.el --- MH-E sequences support -;; Copyright (C) 1993, 1995, -;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 -;; Free Software Foundation, Inc. +;; Copyright (C) 1993, 1995, 2001-2011 Free Software Foundation, Inc. ;; Author: Bill Wohler ;; Maintainer: Bill Wohler @@ -200,7 +198,8 @@ MESSAGE appears." " ")))) ;; Shush compiler. -(defvar tool-bar-mode) ; XEmacs +(mh-do-in-xemacs + (defvar tool-bar-mode)) (defvar tool-bar-map) ;;;###mh-autoload @@ -819,7 +818,7 @@ that note messages to be refiled." "Return a list of message numbers from point to the end of the line. Expands ranges into set of individual numbers." (let ((msgs ()) - (end-of-line (save-excursion (end-of-line) (point))) + (end-of-line (point-at-eol)) num) (while (re-search-forward "[0-9]+" end-of-line t) (setq num (string-to-number (buffer-substring (match-beginning 0) @@ -1017,5 +1016,4 @@ removed." ;; sentence-end-double-space: nil ;; End: -;; arch-tag: 8e952711-01a2-485b-bf21-c9e3ad4de942 ;;; mh-seq.el ends here