changeset 85128:8b61a2e5e365

(indent_tabs_mode, last_known_column, last_known_column_modified): Make static. (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 10 Oct 2007 08:50:33 +0000
parents b98ea218eb70
children 340d84058e53
files src/indent.c
diffstat 1 files changed, 4 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/indent.c	Wed Oct 10 08:29:04 2007 +0000
+++ b/src/indent.c	Wed Oct 10 08:50:33 2007 +0000
@@ -39,7 +39,7 @@
 /* Indentation can insert tabs if this is non-zero;
    otherwise always uses spaces.  */
 
-int indent_tabs_mode;
+static int indent_tabs_mode;
 
 #define CR 015
 
@@ -49,7 +49,7 @@
    Some things in set last_known_column_point to -1
    to mark the memorized value as invalid.  */
 
-double last_known_column;
+static double last_known_column;
 
 /* Value of point when current_column was called.  */
 
@@ -57,7 +57,7 @@
 
 /* Value of MODIFF when current_column was called.  */
 
-int last_known_column_modified;
+static int last_known_column_modified;
 
 static double current_column_1 P_ ((void));
 static double position_indentation P_ ((int));
@@ -2159,8 +2159,7 @@
 syms_of_indent ()
 {
   DEFVAR_BOOL ("indent-tabs-mode", &indent_tabs_mode,
-	       doc: /* *Indentation can insert tabs if this is non-nil.
-Setting this variable automatically makes it local to the current buffer.  */);
+	       doc: /* *Indentation can insert tabs if this is non-nil.  */);
   indent_tabs_mode = 1;
 
   defsubr (&Scurrent_indentation);