summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-01-19 19:46:23 -0800
committerGlenn Morris <rgm@gnu.org>2010-01-19 19:46:23 -0800
commite073d74aaad5b5b5b1300dc62e932b68a5478bcc (patch)
tree0e53ab67b08acf0cbe9dbca4454084a318dc7b9d /lisp
parent1fdede8fa561814c5535de26f1f505e29cb38b33 (diff)
downloademacs-e073d74aaad5b5b5b1300dc62e932b68a5478bcc.tar.gz
emacs-e073d74aaad5b5b5b1300dc62e932b68a5478bcc.tar.bz2
emacs-e073d74aaad5b5b5b1300dc62e932b68a5478bcc.zip
(tab-always-indent): Fix custom-type.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/indent.el10
2 files changed, 11 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4b34373f2d3..800b2ad24c9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-20 Glenn Morris <rgm@gnu.org>
+
+ * indent.el (tab-always-indent): Fix custom-type.
+
2010-01-19 Alan Mackenzie <acm@muc.de>
* progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
diff --git a/lisp/indent.el b/lisp/indent.el
index 12cf9c9bb5d..3f8353bd90c 100644
--- a/lisp/indent.el
+++ b/lisp/indent.el
@@ -1,7 +1,7 @@
;;; indent.el --- indentation commands for Emacs
-;; Copyright (C) 1985, 1995, 2001, 2002, 2003, 2004,
-;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1995, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+;; 2008, 2009, 2010 Free Software Foundation, Inc.
;; Maintainer: FSF
@@ -55,7 +55,11 @@ was already indented, then try to complete the thing at point.
Some programming language modes have their own variable to control this,
e.g., `c-tab-always-indent', and do not respect this variable."
:group 'indent
- :type '(choice (const nil) (const t) (const always)))
+ :type '(choice
+ (const :tag "Always indent" t)
+ (const :tag "Indent if inside indentation, else TAB" nil)
+ (const :tag "Indent, or if already indented complete" complete)))
+
(defun indent-according-to-mode ()
"Indent line in proper way for current major mode.