]> git.eshelyaron.com Git - emacs.git/commitdiff
(tab-always-indent): Fix custom-type.
authorGlenn Morris <rgm@gnu.org>
Wed, 20 Jan 2010 03:46:23 +0000 (19:46 -0800)
committerGlenn Morris <rgm@gnu.org>
Wed, 20 Jan 2010 03:46:23 +0000 (19:46 -0800)
lisp/ChangeLog
lisp/indent.el

index 4b34373f2d39d752ccaba7a3cedfb18050d03ade..800b2ad24c9af69d5f651aa2fc9dcbb655697914 100644 (file)
@@ -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
index 12cf9c9bb5de2e6e3a571d4f64989c2c4db74786..3f8353bd90ca58dfde7ad51cb5e6f4f2a7ab5d73 100644 (file)
@@ -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.