diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-08-12 18:29:05 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-08-12 18:29:05 +0200 |
commit | a459e5256c2cf2a313db503c2b3f565b03694332 (patch) | |
tree | 7b81bfe93bb3dd153bca7e2b46c3b7ca6cc27b34 /lisp/progmodes/idlwave.el | |
parent | 51ea541710e251b7147ace80a227dcbfbe865fb5 (diff) | |
download | emacs-a459e5256c2cf2a313db503c2b3f565b03694332.tar.gz emacs-a459e5256c2cf2a313db503c2b3f565b03694332.tar.bz2 emacs-a459e5256c2cf2a313db503c2b3f565b03694332.zip |
Remove some compat code from idlwave.el
* lisp/progmodes/idlwave.el: Remove some checks for functions that
always exist.
Diffstat (limited to 'lisp/progmodes/idlwave.el')
-rw-r--r-- | lisp/progmodes/idlwave.el | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index f4eb2be8cc4..f7e53ec02d6 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el @@ -154,21 +154,6 @@ (eval-when-compile (require 'cl-lib)) (require 'idlw-help) -;; For XEmacs -(unless (fboundp 'line-beginning-position) - (defalias 'line-beginning-position 'point-at-bol)) -(unless (fboundp 'line-end-position) - (defalias 'line-end-position 'point-at-eol)) -(unless (fboundp 'char-valid-p) - (defalias 'char-valid-p 'characterp)) -(unless (fboundp 'match-string-no-properties) - (defalias 'match-string-no-properties 'match-string)) - -(if (not (fboundp 'cancel-timer)) - (condition-case nil - (require 'timer) - (error nil))) - (declare-function idlwave-shell-get-path-info "idlw-shell") (declare-function idlwave-shell-temp-file "idlw-shell") (declare-function idlwave-shell-is-running "idlw-shell") |