comparison lisp/emacs-lisp/lisp-mode.el @ 16381:badca394f979

(eval-after-load): Add lisp-indent-function for it.
author Richard M. Stallman <rms@gnu.org>
date Thu, 03 Oct 1996 21:51:39 +0000
parents aee74c21dfee
children da03658014e3
comparison
equal deleted inserted replaced
16380:aee74c21dfee 16381:badca394f979
590 (put 'if 'lisp-indent-function 2) 590 (put 'if 'lisp-indent-function 2)
591 (put 'catch 'lisp-indent-function 1) 591 (put 'catch 'lisp-indent-function 1)
592 (put 'condition-case 'lisp-indent-function 2) 592 (put 'condition-case 'lisp-indent-function 2)
593 (put 'unwind-protect 'lisp-indent-function 1) 593 (put 'unwind-protect 'lisp-indent-function 1)
594 (put 'with-output-to-temp-buffer 'lisp-indent-function 1) 594 (put 'with-output-to-temp-buffer 'lisp-indent-function 1)
595 (put 'eval-after-load 'lisp-indent-function 1)
595 596
596 (defun indent-sexp (&optional endpos) 597 (defun indent-sexp (&optional endpos)
597 "Indent each line of the list starting just after point. 598 "Indent each line of the list starting just after point.
598 If optional arg ENDPOS is given, indent each line, stopping when 599 If optional arg ENDPOS is given, indent each line, stopping when
599 ENDPOS is encountered." 600 ENDPOS is encountered."