summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/eieio.el
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2023-09-02 15:37:08 +0200
committerStefan Kangas <stefankangas@gmail.com>2023-09-02 15:37:08 +0200
commit0bd46619413e83fe3c85c8a1dfbf5e20dfce8605 (patch)
treed86c08c2671f817167eadfc15f0cf319dd6b0dc6 /lisp/emacs-lisp/eieio.el
parent524c0c34f245440e45f3672b35b32e529cbb5c2a (diff)
downloademacs-0bd46619413e83fe3c85c8a1dfbf5e20dfce8605.tar.gz
emacs-0bd46619413e83fe3c85c8a1dfbf5e20dfce8605.tar.bz2
emacs-0bd46619413e83fe3c85c8a1dfbf5e20dfce8605.zip
Doc fixes for obsolete functions and variables
* admin/notes/multi-tty: * doc/emacs/building.texi (Debugger Operation): * doc/misc/efaq-w32.texi (Line ends by file system): * doc/misc/gnus.texi (Hashcash): * lisp/emacs-lisp/eieio.el (eieio-class-parents) (eieio-class-children): * lisp/progmodes/perl-mode.el: * lisp/textmodes/ispell.el (ispell-lookup-words): * src/buffer.h: Update or delete references to variables and functions made obsolete in Emacs 24.4.
Diffstat (limited to 'lisp/emacs-lisp/eieio.el')
-rw-r--r--lisp/emacs-lisp/eieio.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el
index 064a55f2727..dcb4fe5ee6f 100644
--- a/lisp/emacs-lisp/eieio.el
+++ b/lisp/emacs-lisp/eieio.el
@@ -448,16 +448,13 @@ If EXTRA, include that in the string returned to represent the symbol."
(defun eieio-class-parents (class)
;; FIXME: What does "(overload of variable)" mean here?
- "Return parent classes to CLASS. (overload of variable).
-
-The CLOS function `class-direct-superclasses' is aliased to this function."
+ "Return parent classes to CLASS. (overload of variable)."
(eieio--class-parents (eieio--full-class-object class)))
(define-obsolete-function-alias 'class-parents #'eieio-class-parents "24.4")
(defun eieio-class-children (class)
- "Return child classes to CLASS.
-The CLOS function `class-direct-subclasses' is aliased to this function."
+ "Return child classes to CLASS."
(cl-check-type class class)
(eieio--class-children (cl--find-class class)))
(define-obsolete-function-alias