# HG changeset patch # User Alan Mackenzie # Date 1166393746 0 # Node ID 2d3815650232933408d2a6cd125fccd755aebb57 # Parent 14b7babc6a002eaebd6ebe2a61ee24c2af674557 (c-basic-common-init): don't set open-paren-in-column-0-is-defun-start to nil any more. diff -r 14b7babc6a00 -r 2d3815650232 lisp/progmodes/cc-mode.el --- a/lisp/progmodes/cc-mode.el Sun Dec 17 22:14:48 2006 +0000 +++ b/lisp/progmodes/cc-mode.el Sun Dec 17 22:15:46 2006 +0000 @@ -531,9 +531,11 @@ ;; heuristic that open parens in column 0 are defun starters. Since ;; we have c-state-cache, that heuristic isn't useful and only causes ;; trouble, so turn it off. - (when (memq 'col-0-paren c-emacs-features) - (make-local-variable 'open-paren-in-column-0-is-defun-start) - (setq open-paren-in-column-0-is-defun-start nil)) +;; 2006/12/17: This facility is somewhat confused, and doesn't really seem +;; helpful. Comment it out for now. +;; (when (memq 'col-0-paren c-emacs-features) +;; (make-local-variable 'open-paren-in-column-0-is-defun-start) +;; (setq open-paren-in-column-0-is-defun-start nil)) (c-clear-found-types)