emacs.rst
changeset 1653 f9aae584ecb4
parent 1652 a653ec78b1b8
child 1654 f361c89e693f
equal deleted inserted replaced
1652:a653ec78b1b8 1653:f9aae584ecb4
    74 What functions and variables Emacs load and from which files?
    74 What functions and variables Emacs load and from which files?
    75 -------------------------------------------------------------
    75 -------------------------------------------------------------
    76 
    76 
    77 See value of variable ``load-history`` (by C-h v load-history RET)::
    77 See value of variable ``load-history`` (by C-h v load-history RET)::
    78 
    78 
    79   (symbol-file 'c-mode)
    79   (symbol-file 'scheme 'provide)        ; Who provide feature.
    80   (find-lisp-object-file-name 'c-mode (symbol-function 'c-mode))
    80   (symbol-file 'nxml-mode-hook 'defvar) ; Where variable defined.
       
    81   (symbol-file 'message-send 'defun)    ; Where function defined.
    81   load-history
    82   load-history
    82   (locate-library "gnus.el")
    83   (locate-library "gnus.el")
       
    84   (find-lisp-object-file-name 'c-mode (symbol-function 'c-mode))
    83 
    85 
    84 Using edebug.
    86 Using edebug.
    85 -------------
    87 -------------
    86 
    88 
    87 Execute ``M-x edebug-defun`` (also on ``C-u C-M-x``) on defun in source code to
    89 Execute ``M-x edebug-defun`` (also on ``C-u C-M-x``) on defun in source code to