diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-11 16:39:23 +1100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-11 16:39:23 +1100 |
commit | fd8d344fc9164accd2d69683f8aee32b2a87b647 (patch) | |
tree | 8aefac778182b9d10fef1856042b174c6aaf6fb1 /lisp/gnus/gnus-sum.el | |
parent | e91b75de10881c1bb8b0f4cc14f35c68563dc356 (diff) | |
download | emacs-fd8d344fc9164accd2d69683f8aee32b2a87b647.tar.gz emacs-fd8d344fc9164accd2d69683f8aee32b2a87b647.tar.bz2 emacs-fd8d344fc9164accd2d69683f8aee32b2a87b647.zip |
Remove more XEmacs compat functions from Gnus
* lisp/gnus/gnus-util.el (gnus-next-char-property-change): Remove.
(gnus-previous-char-property-change): Remove.
(gnus-graphic-display-p): Remove.
(gnus-select-frame-set-input-focus): Remove.
Diffstat (limited to 'lisp/gnus/gnus-sum.el')
-rw-r--r-- | lisp/gnus/gnus-sum.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 68f5e5ec244..5eb89b740be 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -6836,7 +6836,7 @@ Like forward-line, but skip over (and don't count) invisible lines." ;; If the following character is currently invisible, ;; skip all characters with that same `invisible' property value. (while (invisible-p (point)) - (goto-char (gnus-next-char-property-change (point)))) + (goto-char (next-char-property-change (point)))) (forward-line 1) (if (eobp) (setq done t) @@ -6846,7 +6846,7 @@ Like forward-line, but skip over (and don't count) invisible lines." (if (bobp) (setq done t) (setq n (1+ n)) (while (and (not (bobp)) (invisible-p (1- (point)))) - (goto-char (gnus-previous-char-property-change (point)))))))) + (goto-char (previous-char-property-change (point)))))))) (defun gnus-summary-recenter () "Center point in the summary window. |