comparison lisp/indent.el @ 41762:9ebf70e688cd

(indent-line-function): Default is indent-to-left-margin again.
author Richard M. Stallman <rms@gnu.org>
date Sun, 02 Dec 2001 04:47:16 +0000
parents 581ab0e31090
children 23120b6a0225
comparison
equal deleted inserted replaced
41761:878a3e2e7cfa 41762:9ebf70e688cd
35 (defcustom standard-indent 4 35 (defcustom standard-indent 4
36 "*Default number of columns for margin-changing functions to indent." 36 "*Default number of columns for margin-changing functions to indent."
37 :group 'indent 37 :group 'indent
38 :type 'integer) 38 :type 'integer)
39 39
40 (defvar indent-line-function 'indent-relative 40 (defvar indent-line-function 'indent-to-left-margin
41 "Function to indent the current line. 41 "Function to indent the current line.
42 This function will be called with no arguments. 42 This function will be called with no arguments.
43 If it is called somewhere where auto-indentation cannot be done 43 If it is called somewhere where auto-indentation cannot be done
44 \(f.ex. inside a string), the function should simply return `noindent'. 44 \(f.ex. inside a string), the function should simply return `noindent'.
45 Setting this function is all you need to make TAB indent appropriately. 45 Setting this function is all you need to make TAB indent appropriately.