diff src/syntax.c @ 434:9d177e8d4150 r21-2-25

Import from CVS: tag r21-2-25
author cvs
date Mon, 13 Aug 2007 11:30:53 +0200
parents 3ecd8885ac67
children 8de8e3f6228a
line wrap: on
line diff
--- a/src/syntax.c	Mon Aug 13 11:30:00 2007 +0200
+++ b/src/syntax.c	Mon Aug 13 11:30:53 2007 +0200
@@ -385,12 +385,12 @@
 	    if (code != Sword
 #ifdef MULE
 		|| WORD_BOUNDARY_P (ch0, ch1)
-#endif		
+#endif
 		)
 	      break;
 #ifdef MULE
 	  ch0 = ch1;
-#endif	  
+#endif
 	  from++;
 	}
       count--;
@@ -1027,7 +1027,7 @@
 	  if (SYNTAX_PREFIX_UNSAFE (mirrortab, c))
 	    continue;
 
-	  switch (((quoted) ? Sword : code))
+	  switch (quoted ? Sword : code)
 	    {
 	    case Sword:
 	    case Ssymbol:
@@ -1681,11 +1681,12 @@
   DEFVAR_BOOL ("parse-sexp-ignore-comments", &parse_sexp_ignore_comments /*
 Non-nil means `forward-sexp', etc., should treat comments as whitespace.
 */ );
+  parse_sexp_ignore_comments = 0;
 
-  words_include_escapes = 0;
   DEFVAR_BOOL ("words-include-escapes", &words_include_escapes /*
 Non-nil means `forward-word', etc., should treat escape chars part of words.
 */ );
+  words_include_escapes = 0;
 
   no_quit_in_re_search = 0;
 }