comparison lisp/indent.el @ 269:2ca8cdb96a9f

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Mon, 13 May 1991 22:05:14 +0000
parents 57bcc096ab9c
children 08eb386dd0f3
comparison
equal deleted inserted replaced
268:2dd411fe2f72 269:2ca8cdb96a9f
16 ;; You should have received a copy of the GNU General Public License 16 ;; You should have received a copy of the GNU General Public License
17 ;; along with GNU Emacs; see the file COPYING. If not, write to 17 ;; along with GNU Emacs; see the file COPYING. If not, write to
18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 19
20 20
21 ;;;###autoload (defvar indent-line-function 'indent-to-left-margin "\ 21 ;;;###autoload
22 ;;;###autoload Function to indent current line.");Now in loaddefs.el 22 (defvar indent-line-function 'indent-to-left-margin "\
23 Function to indent current line.");Now in loaddefs.el
23 24
24 (defun indent-according-to-mode () 25 (defun indent-according-to-mode ()
25 "Indent line in proper way for current major mode." 26 "Indent line in proper way for current major mode."
26 (interactive) 27 (interactive)
27 (funcall indent-line-function)) 28 (funcall indent-line-function))