]> git.eshelyaron.com Git - emacs.git/commitdiff
(c-basic-common-init): Remove calls to
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 3 Oct 2005 21:23:06 +0000 (21:23 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 3 Oct 2005 21:23:06 +0000 (21:23 +0000)
make-local-variable which we do not need any more.

lisp/ChangeLog
lisp/progmodes/cc-mode.el

index 423b77732fb0b1c149464f08e5a4f84a3ce91551..e4412b54ee4a77a430d4db77fc6e463bf8691013 100644 (file)
@@ -1,3 +1,11 @@
+2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
+       not change the global value of those vars.
+
+       * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
+       make-local-variable which we do not need any more.
+
 2005-10-03  Chong Yidong  <cyd@stupidchicken.com>
 
        * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
@@ -18,6 +26,9 @@
 
 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * net/ange-ftp.el: Use with-current-buffer.
+       (ange-ftp-insert-directory): Do not follow symlinks any more.
+
        * textmodes/ispell.el (ispell-find-aspell-dictionaries):
        Remove interactive spec.
 
index 92c402dbad478954700d17420820f51a7b0b1cf0..63c6aad3aa188e9cdd76849dd330f188696d7b85 100644 (file)
@@ -395,11 +395,6 @@ that requires a literal mode spec at compile time."
   (make-local-variable 'comment-end)
   (make-local-variable 'comment-start-skip)
   (make-local-variable 'comment-multi-line)
-  (make-local-variable 'paragraph-start)
-  (make-local-variable 'paragraph-separate)
-  (make-local-variable 'paragraph-ignore-fill-prefix)
-  (make-local-variable 'adaptive-fill-mode)
-  (make-local-variable 'adaptive-fill-regexp)
 
   ;; now set their values
   (setq parse-sexp-ignore-comments t
@@ -1180,5 +1175,5 @@ Key bindings:
 \f
 (cc-provide 'cc-mode)
 
-;;; arch-tag: 7825e5c4-fd09-439f-a04d-4c13208ba3d7
+;; arch-tag: 7825e5c4-fd09-439f-a04d-4c13208ba3d7
 ;;; cc-mode.el ends here