]> code.delx.au - gnu-emacs/blobdiff - lisp/progmodes/cc-guess.el
Update copyright year to 2015
[gnu-emacs] / lisp / progmodes / cc-guess.el
index 5424e8d4a61e7bcd1491538c654a01d2b66c70e9..20534737d8aeb326d11b6488f62c53ceb63476a8 100644 (file)
@@ -1,7 +1,7 @@
 ;;; cc-guess.el --- guess indentation values by scanning existing code
 
-;; Copyright (C) 1985, 1987, 1992-2006, 2011-2014
-;;   Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1987, 1992-2006, 2011-2015 Free Software
+;; Foundation, Inc.
 
 ;; Author:     1994-1995 Barry A. Warsaw
 ;;             2011-     Masatake YAMATO
@@ -519,7 +519,8 @@ is called with one argument, the guessed style."
       (goto-char (point-min))
       (when (search-forward (concat "("
                                    (symbol-name (car needs-markers))
-                                   " ") nil t)
+                                   " ")
+                            nil t)
        (move-end-of-line 1)
        (comment-dwim nil)
        (insert " Guessed value"))
@@ -571,4 +572,9 @@ WITH-NAME is asked to the user."
 
 \f
 (cc-provide 'cc-guess)
+
+;;; Local Variables:
+;;; indent-tabs-mode: t
+;;; tab-width: 8
+;;; End:
 ;;; cc-guess.el ends here