aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-05-24 00:01:49 -0700
committerGlenn Morris2013-05-24 00:01:49 -0700
commite670054b6647eb3bb96be4037174484582817f09 (patch)
treed501d7726ec61463f9a7460816579595c2c81749
parentaf5c7606d1028e422d4ad2a5260be75f04e5dac8 (diff)
downloademacs-e670054b6647eb3bb96be4037174484582817f09.tar.gz
emacs-e670054b6647eb3bb96be4037174484582817f09.zip
Silence some cedet compilation warnings
* cedet/semantic/bovine/c-by.el (semantic-parse-region): * cedet/semantic/wisent/javat-wy.el (semantic-parse-region): * cedet/semantic/wisent/js-wy.el (semantic-parse-region): * cedet/semantic/wisent/python-wy.el (semantic-parse-region): Declare. * cedet/semantic/bovine/grammar.el (bovine-make-parsers): Avoid free variable `copyright-end'.
-rw-r--r--lisp/cedet/ChangeLog10
-rw-r--r--lisp/cedet/semantic/bovine/c-by.el10
-rw-r--r--lisp/cedet/semantic/bovine/grammar.el2
-rw-r--r--lisp/cedet/semantic/wisent/javat-wy.el2
-rw-r--r--lisp/cedet/semantic/wisent/js-wy.el2
-rw-r--r--lisp/cedet/semantic/wisent/python-wy.el8
6 files changed, 28 insertions, 6 deletions
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog
index 486f1abfeda..25f966362ce 100644
--- a/lisp/cedet/ChangeLog
+++ b/lisp/cedet/ChangeLog
@@ -1,3 +1,13 @@
12013-05-24 Glenn Morris <rgm@gnu.org>
2
3 * semantic/bovine/grammar.el (bovine-make-parsers):
4 Avoid free variable `copyright-end'.
5
6 * semantic/bovine/c-by.el (semantic-parse-region):
7 * semantic/wisent/javat-wy.el (semantic-parse-region):
8 * semantic/wisent/js-wy.el (semantic-parse-region):
9 * semantic/wisent/python-wy.el (semantic-parse-region): Declare.
10
12013-05-22 Glenn Morris <rgm@gnu.org> 112013-05-22 Glenn Morris <rgm@gnu.org>
2 12
3 * ede/speedbar.el (ede-file-find, ede-tag-find): 13 * ede/speedbar.el (ede-file-find, ede-tag-find):
diff --git a/lisp/cedet/semantic/bovine/c-by.el b/lisp/cedet/semantic/bovine/c-by.el
index 5317d838fbd..af3724a32c8 100644
--- a/lisp/cedet/semantic/bovine/c-by.el
+++ b/lisp/cedet/semantic/bovine/c-by.el
@@ -28,9 +28,13 @@
28 28
29;;; Prologue 29;;; Prologue
30;; 30;;
31(declare-function semantic-c-reconstitute-token "semantic/bovine/c") 31(declare-function semantic-c-reconstitute-token "semantic/bovine/c"
32(declare-function semantic-c-reconstitute-template "semantic/bovine/c") 32 (tokenpart declmods typedecl))
33(declare-function semantic-expand-c-tag "semantic/bovine/c") 33(declare-function semantic-c-reconstitute-template "semantic/bovine/c"
34 (tag specifier))
35(declare-function semantic-expand-c-tag "semantic/bovine/c" (tag))
36(declare-function semantic-parse-region "semantic"
37 (start end &optional nonterminal depth returnonerror))
34 38
35;;; Declarations 39;;; Declarations
36;; 40;;
diff --git a/lisp/cedet/semantic/bovine/grammar.el b/lisp/cedet/semantic/bovine/grammar.el
index 3aee57e9d10..0133ee72b18 100644
--- a/lisp/cedet/semantic/bovine/grammar.el
+++ b/lisp/cedet/semantic/bovine/grammar.el
@@ -455,7 +455,7 @@ Menu items are appended to the common grammar menu.")
455 (with-current-buffer (find-file-noselect f) 455 (with-current-buffer (find-file-noselect f)
456 (semantic-grammar-create-package)) 456 (semantic-grammar-create-package))
457 (error (message "%s" (error-message-string err)) nil))) 457 (error (message "%s" (error-message-string err)) nil)))
458 lang filename) 458 lang filename copyright-end)
459 (when (and packagename 459 (when (and packagename
460 (string-match "^.*/\\(.*\\)-by\\.el\\'" packagename)) 460 (string-match "^.*/\\(.*\\)-by\\.el\\'" packagename))
461 (setq lang (match-string 1 packagename)) 461 (setq lang (match-string 1 packagename))
diff --git a/lisp/cedet/semantic/wisent/javat-wy.el b/lisp/cedet/semantic/wisent/javat-wy.el
index f082358c4f5..1156cb5792c 100644
--- a/lisp/cedet/semantic/wisent/javat-wy.el
+++ b/lisp/cedet/semantic/wisent/javat-wy.el
@@ -28,6 +28,8 @@
28 28
29;;; Prologue 29;;; Prologue
30;; 30;;
31(declare-function semantic-parse-region "semantic"
32 (start end &optional nonterminal depth returnonerror))
31 33
32;;; Declarations 34;;; Declarations
33;; 35;;
diff --git a/lisp/cedet/semantic/wisent/js-wy.el b/lisp/cedet/semantic/wisent/js-wy.el
index 817afa861d4..2e331b1c4d9 100644
--- a/lisp/cedet/semantic/wisent/js-wy.el
+++ b/lisp/cedet/semantic/wisent/js-wy.el
@@ -64,6 +64,8 @@
64 64
65;;; Prologue 65;;; Prologue
66;; 66;;
67(declare-function semantic-parse-region "semantic"
68 (start end &optional nonterminal depth returnonerror))
67 69
68;;; Declarations 70;;; Declarations
69;; 71;;
diff --git a/lisp/cedet/semantic/wisent/python-wy.el b/lisp/cedet/semantic/wisent/python-wy.el
index 836fe232d56..bfa96ff1a88 100644
--- a/lisp/cedet/semantic/wisent/python-wy.el
+++ b/lisp/cedet/semantic/wisent/python-wy.el
@@ -81,8 +81,12 @@
81 81
82;;; Prologue 82;;; Prologue
83;; 83;;
84(declare-function wisent-python-reconstitute-function-tag "semantic/wisent/python") 84(declare-function wisent-python-reconstitute-function-tag
85(declare-function wisent-python-reconstitute-class-tag "semantic/wisent/python") 85 "semantic/wisent/python" (tag suite))
86(declare-function wisent-python-reconstitute-class-tag "semantic/wisent/python"
87 (tag))
88(declare-function semantic-parse-region "semantic"
89 (start end &optional nonterminal depth returnonerror))
86 90
87;;; Declarations 91;;; Declarations
88;; 92;;