]> git.eshelyaron.com Git - emacs.git/commitdiff
(sexp-at-point, symbol-at-point)
authorDave Love <fx@gnu.org>
Wed, 2 Feb 2000 14:51:22 +0000 (14:51 +0000)
committerDave Love <fx@gnu.org>
Wed, 2 Feb 2000 14:51:22 +0000 (14:51 +0000)
(number-at-point, list-at-point): Add autoload cookie.

lisp/thingatpt.el

index 6da9249065392b13b6686d04aab8683d0925f94c..214f6dcfde179158c1d5ba758472d8a86e79958a 100644 (file)
@@ -384,9 +384,13 @@ Signal an error if the entire string was not used."
                (error nil))))
     (if (or (not pred) (funcall pred sexp)) sexp)))
 
+;;;###autoload
 (defun sexp-at-point ()   (form-at-point 'sexp))
+;;;###autoload
 (defun symbol-at-point () (form-at-point 'sexp 'symbolp))
+;;;###autoload
 (defun number-at-point () (form-at-point 'sexp 'numberp))
+;;;###autoload
 (defun list-at-point ()   (form-at-point 'list 'listp))
 
 ;; thingatpt.el ends here.