diff options
| author | Mats Lidell <matslidell@spotify.com> | 2019-06-29 23:35:59 +0200 |
|---|---|---|
| committer | Mats Lidell <matslidell@spotify.com> | 2019-06-29 23:35:59 +0200 |
| commit | 131295ec36bd9054864d7d7ce5ec4feddad38a3d (patch) | |
| tree | 08c64490309f5bc9035b10979972961718c5c1e2 /hui-em-but.el | |
| parent | 997803df8e4dcc15c3284dac5dce4048812ec45b (diff) | |
Remove conditionals on xemacs
Remove all featurep checks on xemacs and emacs.
Diffstat (limited to 'hui-em-but.el')
| -rw-r--r-- | hui-em-but.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hui-em-but.el b/hui-em-but.el index 6ccf25c..c3cd6aa 100644 --- a/hui-em-but.el +++ b/hui-em-but.el @@ -4,7 +4,7 @@ ;; ;; Orig-Date: 21-Aug-92 ;; -;; Copyright (C) 1992-2016 Free Software Foundation, Inc. +;; Copyright (C) 1992-2019 Free Software Foundation, Inc. ;; See the "HY-COPY" file for license information. ;; ;; This file is part of GNU Hyperbole. @@ -16,8 +16,9 @@ ;;; Code: -(unless (and hyperb:emacs-p (not noninteractive)) - (error "(hui-em-but.el): Load only when running GNU Emacs interactively.")) +(when noninteractive + ;; FIXME: Loading a file should always be harmless! + (error "(hui-em-but.el): Load only when running GNU Emacs interactively")) ;;; ************************************************************************ ;;; Other required Elisp libraries |
