aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-09-29 04:09:19 +0000
committerGlenn Morris2009-09-29 04:09:19 +0000
commit84c23041ea3b1cd714a716011781658f368fb61f (patch)
treef9ecea78415a266959a379af748e6b096a76b9b2
parenta70eb60df1bb59159ad0212e0a1e2c62cc985b88 (diff)
downloademacs-84c23041ea3b1cd714a716011781658f368fb61f.tar.gz
emacs-84c23041ea3b1cd714a716011781658f368fb61f.zip
Mark declarations not understood by check-declare.
-rw-r--r--lisp/cedet/semantic/complete.el3
-rw-r--r--lisp/cedet/semantic/tag-file.el6
-rw-r--r--lisp/cedet/srecode/compile.el5
3 files changed, 8 insertions, 6 deletions
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el
index cbf3d9da9ae..a61bccbcb62 100644
--- a/lisp/cedet/semantic/complete.el
+++ b/lisp/cedet/semantic/complete.el
@@ -312,7 +312,8 @@ HISTORY is a symbol representing a variable to story the history in."
312;; semantic-displayor-focus-abstract-child-p is part of the 312;; semantic-displayor-focus-abstract-child-p is part of the
313;; semantic-displayor-focus-abstract class, defined later in this 313;; semantic-displayor-focus-abstract class, defined later in this
314;; file. 314;; file.
315(declare-function semantic-displayor-focus-abstract-child-p "semantic/complete") 315(declare-function semantic-displayor-focus-abstract-child-p "semantic/complete"
316 t t)
316 317
317(defun semantic-complete-current-match () 318(defun semantic-complete-current-match ()
318 "Calculate a match from the current completion environment. 319 "Calculate a match from the current completion environment.
diff --git a/lisp/cedet/semantic/tag-file.el b/lisp/cedet/semantic/tag-file.el
index f558db99877..3d7d147ae5b 100644
--- a/lisp/cedet/semantic/tag-file.el
+++ b/lisp/cedet/semantic/tag-file.el
@@ -1,7 +1,7 @@
1;;; semantic/tag-file.el --- Routines that find files based on tags. 1;;; semantic/tag-file.el --- Routines that find files based on tags.
2 2
3;;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 3;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
4;;; 2008, 2009 Free Software Foundation, Inc. 4;; 2009 Free Software Foundation, Inc.
5 5
6;; Author: Eric M. Ludlam <zappo@gnu.org> 6;; Author: Eric M. Ludlam <zappo@gnu.org>
7;; Keywords: syntax 7;; Keywords: syntax
@@ -29,7 +29,7 @@
29(require 'semantic/tag) 29(require 'semantic/tag)
30 30
31(defvar ede-minor-mode) 31(defvar ede-minor-mode)
32(declare-function semanticdb-table-child-p "semantic/db") 32(declare-function semanticdb-table-child-p "semantic/db" t t)
33(declare-function semanticdb-get-buffer "semantic/db") 33(declare-function semanticdb-get-buffer "semantic/db")
34(declare-function semantic-dependency-find-file-on-path "semantic/dep") 34(declare-function semantic-dependency-find-file-on-path "semantic/dep")
35(declare-function ede-toplevel "ede/files") 35(declare-function ede-toplevel "ede/files")
diff --git a/lisp/cedet/srecode/compile.el b/lisp/cedet/srecode/compile.el
index 5b3d8fb50fc..85baaeede5a 100644
--- a/lisp/cedet/srecode/compile.el
+++ b/lisp/cedet/srecode/compile.el
@@ -1,6 +1,6 @@
1;;; srecode/compile --- Compilation of srecode template files. 1;;; srecode/compile --- Compilation of srecode template files.
2 2
3;;; Copyright (C) 2005, 2007, 2008, 2009 Free Software Foundation, Inc. 3;; Copyright (C) 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
4 4
5;; Author: Eric M. Ludlam <zappo@gnu.org> 5;; Author: Eric M. Ludlam <zappo@gnu.org>
6;; Keywords: codegeneration 6;; Keywords: codegeneration
@@ -37,7 +37,8 @@
37(require 'srecode) 37(require 'srecode)
38(require 'srecode/table) 38(require 'srecode/table)
39 39
40(declare-function srecode-template-inserter-newline-child-p "srecode/insert") 40(declare-function srecode-template-inserter-newline-child-p "srecode/insert"
41 t t)
41(declare-function srecode-create-section-dictionary "srecode/dictionary") 42(declare-function srecode-create-section-dictionary "srecode/dictionary")
42(declare-function srecode-dictionary-compound-variable "srecode/dictionary") 43(declare-function srecode-dictionary-compound-variable "srecode/dictionary")
43 44