diff options
| author | Glenn Morris | 2009-10-31 02:03:19 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-10-31 02:03:19 +0000 |
| commit | f3628edde668261ea863ef287c9a854a9e4f7248 (patch) | |
| tree | e8c950c6f9832dd892b3ad245f422347fe7cf762 | |
| parent | 0405f8d9a302bf48308365467042e9d4f623b692 (diff) | |
| download | emacs-f3628edde668261ea863ef287c9a854a9e4f7248.tar.gz emacs-f3628edde668261ea863ef287c9a854a9e4f7248.zip | |
Suppress harmless warnings about setting up semantic-imenu (not part
of Emacs) variables.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/cedet/semantic/html.el | 5 | ||||
| -rw-r--r-- | lisp/cedet/semantic/texi.el | 5 | ||||
| -rw-r--r-- | lisp/cedet/semantic/wisent/java-tags.el | 7 | ||||
| -rw-r--r-- | lisp/cedet/semantic/wisent/javascript.el | 3 | ||||
| -rw-r--r-- | lisp/cedet/srecode/template.el | 3 |
6 files changed, 29 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ef21f200186..838ee2dd93a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2009-10-31 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el: | ||
| 4 | * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el: | ||
| 5 | * cedet/semantic/html.el: | ||
| 6 | Suppress harmless warnings about setting up semantic-imenu (not | ||
| 7 | part of Emacs) variables. | ||
| 8 | |||
| 1 | 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca> | 9 | 2009-10-30 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 10 | ||
| 3 | * vc-bzr.el (vc-bzr-revision-keywords): New var. | 11 | * vc-bzr.el (vc-bzr-revision-keywords): New var. |
diff --git a/lisp/cedet/semantic/html.el b/lisp/cedet/semantic/html.el index 3e264d2d857..90c9824d5ab 100644 --- a/lisp/cedet/semantic/html.el +++ b/lisp/cedet/semantic/html.el | |||
| @@ -222,6 +222,11 @@ tag with greater section value than LEVEL is found." | |||
| 222 | "The children TAG expands to." | 222 | "The children TAG expands to." |
| 223 | (semantic-html-components tag)) | 223 | (semantic-html-components tag)) |
| 224 | 224 | ||
| 225 | ;; In semantic-imenu.el, not part of Emacs. | ||
| 226 | (defvar semantic-imenu-expandable-tag-classes) | ||
| 227 | (defvar semantic-imenu-bucketize-file) | ||
| 228 | (defvar semantic-imenu-bucketize-type-members) | ||
| 229 | |||
| 225 | ;;;###autoload | 230 | ;;;###autoload |
| 226 | (defun semantic-default-html-setup () | 231 | (defun semantic-default-html-setup () |
| 227 | "Set up a buffer for parsing of HTML files." | 232 | "Set up a buffer for parsing of HTML files." |
diff --git a/lisp/cedet/semantic/texi.el b/lisp/cedet/semantic/texi.el index 50b2acd3b25..ae85105bbe2 100644 --- a/lisp/cedet/semantic/texi.el +++ b/lisp/cedet/semantic/texi.el | |||
| @@ -447,6 +447,11 @@ that start with that symbol." | |||
| 447 | 447 | ||
| 448 | ;;; Parser Setup | 448 | ;;; Parser Setup |
| 449 | ;; | 449 | ;; |
| 450 | ;; In semantic-imenu.el, not part of Emacs. | ||
| 451 | (defvar semantic-imenu-expandable-tag-classes) | ||
| 452 | (defvar semantic-imenu-bucketize-file) | ||
| 453 | (defvar semantic-imenu-bucketize-type-members) | ||
| 454 | |||
| 450 | (defun semantic-default-texi-setup () | 455 | (defun semantic-default-texi-setup () |
| 451 | "Set up a buffer for parsing of Texinfo files." | 456 | "Set up a buffer for parsing of Texinfo files." |
| 452 | ;; This will use our parser. | 457 | ;; This will use our parser. |
diff --git a/lisp/cedet/semantic/wisent/java-tags.el b/lisp/cedet/semantic/wisent/java-tags.el index 1d8f38fc784..8d0ef3d6fa9 100644 --- a/lisp/cedet/semantic/wisent/java-tags.el +++ b/lisp/cedet/semantic/wisent/java-tags.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; semantic/wisent/java-tags.el --- Java LALR parser for Emacs | 1 | ;;; semantic/wisent/java-tags.el --- Java LALR parser for Emacs |
| 2 | 2 | ||
| 3 | ;;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2009 | 3 | ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2009 |
| 4 | ;;; Free Software Foundation, Inc. | 4 | ;; Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: David Ponce <david@dponce.com> | 6 | ;; Author: David Ponce <david@dponce.com> |
| 7 | ;; Maintainer: David Ponce <david@dponce.com> | 7 | ;; Maintainer: David Ponce <david@dponce.com> |
| @@ -78,6 +78,9 @@ This function override `get-local-variables'." | |||
| 78 | ;;;; Semantic integration of the Java LALR parser | 78 | ;;;; Semantic integration of the Java LALR parser |
| 79 | ;;;; | 79 | ;;;; |
| 80 | 80 | ||
| 81 | ;; In semantic-imenu.el, not part of Emacs. | ||
| 82 | (defvar semantic-imenu-summary-function) | ||
| 83 | |||
| 81 | ;;;###autoload | 84 | ;;;###autoload |
| 82 | (defun wisent-java-default-setup () | 85 | (defun wisent-java-default-setup () |
| 83 | "Hook run to setup Semantic in `java-mode'. | 86 | "Hook run to setup Semantic in `java-mode'. |
diff --git a/lisp/cedet/semantic/wisent/javascript.el b/lisp/cedet/semantic/wisent/javascript.el index 8ea52d86194..c76fdffab1a 100644 --- a/lisp/cedet/semantic/wisent/javascript.el +++ b/lisp/cedet/semantic/wisent/javascript.el | |||
| @@ -75,6 +75,9 @@ This function overrides `get-local-variables'." | |||
| 75 | ;; | 75 | ;; |
| 76 | ;; This sets up the javascript parser | 76 | ;; This sets up the javascript parser |
| 77 | 77 | ||
| 78 | ;; In semantic-imenu.el, not part of Emacs. | ||
| 79 | (defvar semantic-imenu-summary-function) | ||
| 80 | |||
| 78 | ;;;###autoload | 81 | ;;;###autoload |
| 79 | (defun wisent-javascript-setup-parser () | 82 | (defun wisent-javascript-setup-parser () |
| 80 | "Setup buffer for parse." | 83 | "Setup buffer for parse." |
diff --git a/lisp/cedet/srecode/template.el b/lisp/cedet/srecode/template.el index b4f372c1370..8cb63e7c8ec 100644 --- a/lisp/cedet/srecode/template.el +++ b/lisp/cedet/srecode/template.el | |||
| @@ -39,6 +39,9 @@ | |||
| 39 | ans) | 39 | ans) |
| 40 | )) | 40 | )) |
| 41 | 41 | ||
| 42 | ;; In semantic-imenu.el, not part of Emacs. | ||
| 43 | (defvar semantic-imenu-summary-function) | ||
| 44 | |||
| 42 | ;;;###autoload | 45 | ;;;###autoload |
| 43 | (defun srecode-template-setup-parser () | 46 | (defun srecode-template-setup-parser () |
| 44 | "Setup buffer for parse." | 47 | "Setup buffer for parse." |