comparison lisp/help.el @ 4601:7c7262c47538

Remove any reference to mocklisp as an active technology. lisp/ChangeLog addition: 2009-02-04 Aidan Kehoe <kehoea@parhasard.net> * help.el: (describe-function-1): * byte-optimize.el: Remove any reference to mocklisp as an active technology. man/ChangeLog addition: 2009-02-04 Aidan Kehoe <kehoea@parhasard.net> * xemacs/xemacs.texi (Top): * xemacs/misc.texi (Emulation): * xemacs/building.texi (Lisp Libraries): (Compiling Libraries): Remove any reference to mocklisp as an active technology. Also remove documentation of the related #'set-gosmacs-bindings, which is no longer available.
author Aidan Kehoe <kehoea@parhasard.net>
date Wed, 04 Feb 2009 20:52:24 +0000
parents a1a8728fec10
children 48b45a606961
comparison
equal deleted inserted replaced
4599:0347879667ed 4601:7c7262c47538
1162 ;(gettext "an interactive compiled Lisp macro") 1162 ;(gettext "an interactive compiled Lisp macro")
1163 ;(gettext "a Lisp function") 1163 ;(gettext "a Lisp function")
1164 ;(gettext "an interactive Lisp function") 1164 ;(gettext "an interactive Lisp function")
1165 ;(gettext "a Lisp macro") 1165 ;(gettext "a Lisp macro")
1166 ;(gettext "an interactive Lisp macro") 1166 ;(gettext "an interactive Lisp macro")
1167 ;(gettext "a mocklisp function")
1168 ;(gettext "an interactive mocklisp function")
1169 ;(gettext "a mocklisp macro")
1170 ;(gettext "an interactive mocklisp macro")
1171 ;(gettext "an autoloaded Lisp function") 1167 ;(gettext "an autoloaded Lisp function")
1172 ;(gettext "an interactive autoloaded Lisp function") 1168 ;(gettext "an interactive autoloaded Lisp function")
1173 ;(gettext "an autoloaded Lisp macro") 1169 ;(gettext "an autoloaded Lisp macro")
1174 ;(gettext "an interactive autoloaded Lisp macro") 1170 ;(gettext "an interactive autoloaded Lisp macro")
1175 1171
1418 (funcall int "built-in" nil macrop)) 1414 (funcall int "built-in" nil macrop))
1419 ((compiled-function-p fndef) 1415 ((compiled-function-p fndef)
1420 (funcall int "compiled Lisp" nil macrop)) 1416 (funcall int "compiled Lisp" nil macrop))
1421 ((eq (car-safe fndef) 'lambda) 1417 ((eq (car-safe fndef) 'lambda)
1422 (funcall int "Lisp" nil macrop)) 1418 (funcall int "Lisp" nil macrop))
1423 ((eq (car-safe fndef) 'mocklisp)
1424 (funcall int "mocklisp" nil macrop))
1425 ((eq (car-safe def) 'autoload) 1419 ((eq (car-safe def) 'autoload)
1426 (funcall int "autoloaded Lisp" t (elt def 4))) 1420 (funcall int "autoloaded Lisp" t (elt def 4)))
1427 ((and (symbolp def) (not (fboundp def))) 1421 ((and (symbolp def) (not (fboundp def)))
1428 (princ "a symbol with a void (unbound) function definition.")) 1422 (princ "a symbol with a void (unbound) function definition."))
1429 (t 1423 (t