2015-11-24 03:44:17 -05:00
|
|
|
;;; defuns-lisp.el
|
2015-06-15 09:06:10 +02:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun narf/elisp-find-function-at-pt ()
|
|
|
|
(interactive)
|
|
|
|
(let ((func (function-called-at-point)))
|
|
|
|
(if func (find-function func))))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun narf/elisp-find-function-at-pt-other-window ()
|
|
|
|
(interactive)
|
|
|
|
(let ((func (function-called-at-point)))
|
|
|
|
(if func (find-function-other-window func))))
|
|
|
|
|
2015-11-24 03:44:17 -05:00
|
|
|
(provide 'defuns-lisp)
|
|
|
|
;;; defuns-lisp.el ends here
|