comparison lisp/cedet/ede/proj-aux.el @ 105310:cf7413de04e4

(ede-aux-source): Fix doc typo.
author Glenn Morris <rgm@gnu.org>
date Wed, 30 Sep 2009 07:58:46 +0000
parents 2d2d7facd575
children 7f4c7f5c0eba
comparison
equal deleted inserted replaced
105309:c8af3326fc0d 105310:cf7413de04e4
1 ;;; ede/proj-aux.el --- EDE Generic Project auxilliary file support 1 ;;; ede/proj-aux.el --- EDE Generic Project auxilliary file support
2 2
3 ;; Copyright (C) 1998, 1999, 2000, 2007, 2009 Free Software Foundation, Inc. 3 ;; Copyright (C) 1998, 1999, 2000, 2007, 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: project, make 6 ;; Keywords: project, make
7 7
8 ;; This file is part of GNU Emacs. 8 ;; This file is part of GNU Emacs.
34 34
35 (defvar ede-aux-source 35 (defvar ede-aux-source
36 (ede-sourcecode "ede-aux-source-txt" 36 (ede-sourcecode "ede-aux-source-txt"
37 :name "Auxiliary Text" 37 :name "Auxiliary Text"
38 :sourcepattern "^[A-Z]+$\\|\\.txt$") 38 :sourcepattern "^[A-Z]+$\\|\\.txt$")
39 "Miscelaneous fields definition.") 39 "Miscellaneous fields definition.")
40 40
41 (defmethod ede-proj-makefile-sourcevar ((this ede-proj-target-aux)) 41 (defmethod ede-proj-makefile-sourcevar ((this ede-proj-target-aux))
42 "Return the variable name for THIS's sources." 42 "Return the variable name for THIS's sources."
43 (concat (ede-pmake-varname this) "_AUX")) 43 (concat (ede-pmake-varname this) "_AUX"))
44 44