diff options
Diffstat (limited to 'lisp/obsolete/tpu-edt.el')
| -rw-r--r-- | lisp/obsolete/tpu-edt.el | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/lisp/obsolete/tpu-edt.el b/lisp/obsolete/tpu-edt.el index d71f79c87be..0de7aa096d6 100644 --- a/lisp/obsolete/tpu-edt.el +++ b/lisp/obsolete/tpu-edt.el | |||
| @@ -287,14 +287,6 @@ | |||
| 287 | ;;; | 287 | ;;; |
| 288 | ;;; User Configurable Variables | 288 | ;;; User Configurable Variables |
| 289 | ;;; | 289 | ;;; |
| 290 | (defcustom tpu-have-ispell t | ||
| 291 | "Non-nil means `tpu-spell-check' uses `ispell-region' for spell checking. | ||
| 292 | Otherwise, use `spell-region'." | ||
| 293 | :type 'boolean | ||
| 294 | :group 'tpu) | ||
| 295 | (make-obsolete-variable 'tpu-have-ispell "the `spell' package is obsolete." | ||
| 296 | "23.1") | ||
| 297 | |||
| 298 | (defcustom tpu-kill-buffers-silently nil | 290 | (defcustom tpu-kill-buffers-silently nil |
| 299 | "If non-nil, TPU-edt kills modified buffers without asking." | 291 | "If non-nil, TPU-edt kills modified buffers without asking." |
| 300 | :type 'boolean | 292 | :type 'boolean |
| @@ -315,7 +307,6 @@ Otherwise, use `spell-region'." | |||
| 315 | ;;; Global Keymaps | 307 | ;;; Global Keymaps |
| 316 | ;;; | 308 | ;;; |
| 317 | 309 | ||
| 318 | (define-obsolete-variable-alias 'GOLD-map 'tpu-gold-map "23.1") | ||
| 319 | (defvar tpu-gold-map | 310 | (defvar tpu-gold-map |
| 320 | (let ((map (make-keymap))) | 311 | (let ((map (make-keymap))) |
| 321 | ;; Previously we used escape sequences here. We now instead presume | 312 | ;; Previously we used escape sequences here. We now instead presume |
| @@ -892,8 +883,7 @@ With argument, fill and justify." | |||
| 892 | if no region is selected." | 883 | if no region is selected." |
| 893 | (interactive) | 884 | (interactive) |
| 894 | (let ((m (tpu-mark))) | 885 | (let ((m (tpu-mark))) |
| 895 | (apply (if tpu-have-ispell 'ispell-region | 886 | (apply 'ispell-region |
| 896 | 'spell-region) | ||
| 897 | (if m | 887 | (if m |
| 898 | (if (> m (point)) (list (point) m) | 888 | (if (> m (point)) (list (point) m) |
| 899 | (list m (point))) | 889 | (list m (point))) |