diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-19 23:49:13 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-20 12:51:38 +0200 |
commit | 3c16eda5f1d207bf5d345a28ec19ca7afb79647d (patch) | |
tree | c364fd80d712778409d53bec56da5c60006a0f6e /lisp/progmodes/pascal.el | |
parent | c2e27949d5917256bb419dcdae73566079844b4d (diff) | |
download | emacs-3c16eda5f1d207bf5d345a28ec19ca7afb79647d.tar.gz emacs-3c16eda5f1d207bf5d345a28ec19ca7afb79647d.tar.bz2 emacs-3c16eda5f1d207bf5d345a28ec19ca7afb79647d.zip |
Remove XEmacs compat code from pascal.el
* lisp/progmodes/pascal.el (pascal-mark-defun): Remove XEmacs compat.
Diffstat (limited to 'lisp/progmodes/pascal.el')
-rw-r--r-- | lisp/progmodes/pascal.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el index cae514aa75b..26fb0a88c53 100644 --- a/lisp/progmodes/pascal.el +++ b/lisp/progmodes/pascal.el @@ -510,9 +510,7 @@ This puts the mark at the end, and point at the beginning." (push-mark) (pascal-end-of-defun) (push-mark) - (pascal-beg-of-defun) - (when (featurep 'xemacs) - (zmacs-activate-region))) + (pascal-beg-of-defun)) (defun pascal-comment-area (start end) "Put the region into a Pascal comment.\\<pascal-mode-map> |