emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog cedet/semantic/bovine/gcc.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog cedet/semantic/bovine/gcc.el
Date: Thu, 01 Oct 2009 02:19:42 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/10/01 02:19:41

Modified files:
        lisp           : ChangeLog 
        lisp/cedet/semantic/bovine: gcc.el 

Log message:
        (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
        (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16304&r2=1.16305
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/cedet/semantic/bovine/gcc.el?cvsroot=emacs&r1=1.3&r2=1.4

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16304
retrieving revision 1.16305
diff -u -b -r1.16304 -r1.16305
--- ChangeLog   1 Oct 2009 02:17:38 -0000       1.16304
+++ ChangeLog   1 Oct 2009 02:19:38 -0000       1.16305
@@ -1,5 +1,9 @@
 2009-10-01  Glenn Morris  <address@hidden>
 
+       * cedet/semantic/bovine/gcc.el
+       (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
+       (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
+
        * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
        rather than parsing it as a regexp.  This relaxes the layout
        requirements and makes errors easier to detect.

Index: cedet/semantic/bovine/gcc.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/cedet/semantic/bovine/gcc.el,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- cedet/semantic/bovine/gcc.el        30 Sep 2009 02:26:12 -0000      1.3
+++ cedet/semantic/bovine/gcc.el        1 Oct 2009 02:19:41 -0000       1.4
@@ -28,8 +28,7 @@
 
 (defvar semantic-lex-c-preprocessor-symbol-file)
 (defvar semantic-lex-c-preprocessor-symbol-map)
-(declare-function semantic-c-reset-preprocessor-symbol-map
-                 "semantic/bovine/gcc")
+(declare-function semantic-c-reset-preprocessor-symbol-map "semantic/bovine/c")
 
 ;;; Code:
 
@@ -63,7 +62,7 @@
 ;;(semantic-gcc-get-include-paths "c")
 ;;(semantic-gcc-get-include-paths "c++")
 (defun semantic-gcc-get-include-paths (lang)
-  "Return include paths as gcc use them for language LANG."
+  "Return include paths as gcc uses them for language LANG."
   (let* ((gcc-cmd (cond
                    ((string= lang "c") "gcc")
                    ((string= lang "c++") "c++")
@@ -139,9 +138,9 @@
   "The GCC setup data.
 This is setup by `semantic-gcc-setup'.
 This is an alist, and should include keys of:
-  'version - The version of gcc
-  '--host  - The host symbol.  (Used in include directories)
-  '--prefix - Where GCC was installed.
+  'version  - the version of gcc
+  '--host   - the host symbol (used in include directories)
+  '--prefix - where GCC was installed.
 It should also include other symbols GCC was compiled with.")
 
 ;;;###autoload




reply via email to

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