comparison lisp/emacs-lisp/cl-indent.el @ 90200:f9a65d7ebd29

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-68 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 459-473) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 86-87) - Update from CVS
author Miles Bader <miles@gnu.org>
date Thu, 07 Jul 2005 12:43:14 +0000
parents d8411455de48 18a818a2ee7c
children 2d92f5c9d6ae
comparison
equal deleted inserted replaced
90199:bb71c6cf2009 90200:f9a65d7ebd29
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details. 20 ;; GNU General Public License for more details.
21 21
22 ;; You should have received a copy of the GNU General Public License 22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02111-1307, USA. 25 ;; Boston, MA 02110-1301, USA.
26 26
27 ;;; Commentary: 27 ;;; Commentary:
28 28
29 ;; This package supplies a single entry point, common-lisp-indent-function, 29 ;; This package supplies a single entry point, common-lisp-indent-function,
30 ;; which performs indentation in the preferred style for Common Lisp code. 30 ;; which performs indentation in the preferred style for Common Lisp code.
47 ;; Need something better than &rest for such cases 47 ;; Need something better than &rest for such cases
48 48
49 ;;; Code: 49 ;;; Code:
50 50
51 (defgroup lisp-indent nil 51 (defgroup lisp-indent nil
52 "Indentation in Lisp" 52 "Indentation in Lisp."
53 :group 'lisp) 53 :group 'lisp)
54 54
55 55
56 (defcustom lisp-indent-maximum-backtracking 3 56 (defcustom lisp-indent-maximum-backtracking 3
57 "*Maximum depth to backtrack out from a sublist for structured indentation. 57 "*Maximum depth to backtrack out from a sublist for structured indentation.
58 If this variable is 0, no backtracking will occur and forms such as flet 58 If this variable is 0, no backtracking will occur and forms such as `flet'
59 may not be correctly indented." 59 may not be correctly indented."
60 :type 'integer 60 :type 'integer
61 :group 'lisp-indent) 61 :group 'lisp-indent)
62 62
63 (defcustom lisp-tag-indentation 1 63 (defcustom lisp-tag-indentation 1