emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112476: * lisp/find-file.el (cc-othe


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112476: * lisp/find-file.el (cc-other-file-alist): Add ".m" for ObjC.
Date: Mon, 06 May 2013 00:40:58 -0700
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112476
fixes bug: http://debbugs.gnu.org/14339
author: Ivan Andrus <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2013-05-06 00:40:58 -0700
message:
  * lisp/find-file.el (cc-other-file-alist): Add ".m" for ObjC.
modified:
  lisp/ChangeLog
  lisp/find-file.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-05-06 07:29:26 +0000
+++ b/lisp/ChangeLog    2013-05-06 07:40:58 +0000
@@ -1,3 +1,7 @@
+2013-05-06  Ivan Andrus  <address@hidden>
+
+       * find-file.el (cc-other-file-alist): Add ".m" for ObjC.  (Bug#14339)
+
 2013-05-06  Glenn Morris  <address@hidden>
 
        * w32-fns.el (w32-charset-info-alist): Declare.

=== modified file 'lisp/find-file.el'
--- a/lisp/find-file.el 2013-01-01 09:11:05 +0000
+++ b/lisp/find-file.el 2013-05-06 07:40:58 +0000
@@ -245,7 +245,8 @@
     ("\\.hh\\'"  (".cc" ".C"))
 
     ("\\.c\\'"   (".h"))
-    ("\\.h\\'"   (".c" ".cc" ".C" ".CC" ".cxx" ".cpp"))
+    ("\\.m\\'"   (".h"))
+    ("\\.h\\'"   (".c" ".cc" ".C" ".CC" ".cxx" ".cpp" ".m"))
 
     ("\\.C\\'"   (".H"  ".hh" ".h"))
     ("\\.H\\'"   (".C"  ".CC"))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]