diff options
| author | Glenn Morris | 2010-10-01 19:46:13 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-01 19:46:13 -0700 |
| commit | 3226d6cacf15156b8760600be0c6b2aac4dac26d (patch) | |
| tree | b258fef6db752b6ccaff25e39297389b9c4e67c3 /lisp/emulation | |
| parent | 9c524fcb89871b321844de7297a1baee0bde0376 (diff) | |
| download | emacs-3226d6cacf15156b8760600be0c6b2aac4dac26d.tar.gz emacs-3226d6cacf15156b8760600be0c6b2aac4dac26d.zip | |
Remove some functions, variables and aliases obsolete since at least 21.1.
* doc/misc/misc.texi (Shell Mode): Remove reference to old function name.
* src/character.c (Fchar_bytes): Remove obsolete function.
(syms_of_character): Remove Schar_bytes.
* lisp/subr.el (char-bytes): Remove obsolete function.
* lisp/emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
* lisp/isearch.el (isearch-return-char): Remove obsolete function.
* lisp/mouse.el: No longer provide mldrag.
(mldrag-drag-mode-line, mldrag-drag-vertical-line):
Remove obsolete aliases.
* lisp/comint.el (comint-kill-output): Remove obsolete alias.
* lisp/shell.el: Comment fix.
* lisp/composite.el (decompose-composite-char): Remove obsolete function.
* lisp/ps-def.el (decompose-composite-char): Remove unused function.
* lisp/iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
* lisp/outline.el (outline-visible): Remove obsolete function.
* lisp/term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
* lisp/faces.el (internal-find-face, internal-get-face)
(frame-update-faces, frame-update-face-colors)
(x-frob-font-weight, x-frob-font-slant)
(internal-frob-font-weight, internal-frob-font-slant)
(x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
(x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
(x-make-font-bold-italic): Remove functions and aliases, obsolete
since Emacs 21.1.
* lisp/emulation/viper-util.el (viper-get-face):
* lisp/obsolete/lucid.el (find-face, get-face): Use facep.
* lisp/vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
Remove unused functions.
* lisp/vc/ediff-util.el (ediff-submit-report): Doc fix.
* etc/NEWS: Mention above changes.
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/viper-util.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emulation/viper-util.el b/lisp/emulation/viper-util.el index 1ad24da1ef8..6868a960087 100644 --- a/lisp/emulation/viper-util.el +++ b/lisp/emulation/viper-util.el | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | ;;; viper-util.el --- Utilities used by viper.el | 1 | ;;; viper-util.el --- Utilities used by viper.el |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, | 3 | ;; Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, |
| 4 | ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. | 4 | ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
| 5 | ;; Free Software Foundation, Inc. | ||
| 5 | 6 | ||
| 6 | ;; Author: Michael Kifer <kifer@cs.stonybrook.edu> | 7 | ;; Author: Michael Kifer <kifer@cs.stonybrook.edu> |
| 7 | ;; Package: viper | 8 | ;; Package: viper |
| @@ -77,7 +78,7 @@ | |||
| 77 | (defalias 'viper-int-to-char | 78 | (defalias 'viper-int-to-char |
| 78 | (if (featurep 'xemacs) 'int-to-char 'identity)) | 79 | (if (featurep 'xemacs) 'int-to-char 'identity)) |
| 79 | (defalias 'viper-get-face | 80 | (defalias 'viper-get-face |
| 80 | (if (featurep 'xemacs) 'get-face 'internal-get-face)) | 81 | (if (featurep 'xemacs) 'get-face 'facep)) |
| 81 | (defalias 'viper-color-defined-p | 82 | (defalias 'viper-color-defined-p |
| 82 | (if (featurep 'xemacs) 'valid-color-name-p 'x-color-defined-p)) | 83 | (if (featurep 'xemacs) 'valid-color-name-p 'x-color-defined-p)) |
| 83 | (defalias 'viper-iconify | 84 | (defalias 'viper-iconify |