comparison lisp/progmodes/cmacexp.el @ 64699:629afbe74e61

Update copyright for release of 22.1 for progmodes directory.
author Nick Roberts <nickrob@snap.net.nz>
date Mon, 01 Aug 2005 08:43:45 +0000
parents 18a818a2ee7c
children 35c9b3d1f7df edf295560b5a
comparison
equal deleted inserted replaced
64698:7c5f2d64515d 64699:629afbe74e61
1 ;;; cmacexp.el --- expand C macros in a region 1 ;;; cmacexp.el --- expand C macros in a region
2 2
3 ;; Copyright (C) 1992, 1994, 1996, 2000 Free Software Foundation, Inc. 3 ;; Copyright (C) 1992, 1994, 1996, 2000, 2001, 2002, 2003, 2004
4 ;; Free Software Foundation, Inc.
4 5
5 ;; Author: Francesco Potorti` <pot@gnu.org> 6 ;; Author: Francesco Potorti` <pot@gnu.org>
6 ;; Adapted-By: ESR 7 ;; Adapted-By: ESR
7 ;; Keywords: c 8 ;; Keywords: c
8 9
144 "Expand C macros in the region, using the C preprocessor. 145 "Expand C macros in the region, using the C preprocessor.
145 Normally display output in temp buffer, but 146 Normally display output in temp buffer, but
146 prefix arg means replace the region with it. 147 prefix arg means replace the region with it.
147 148
148 `c-macro-preprocessor' specifies the preprocessor to use. 149 `c-macro-preprocessor' specifies the preprocessor to use.
149 Prompt for arguments to the preprocessor \(e.g. `-DDEBUG -I ./include') 150 Tf the user option `c-macro-prompt-flag' is non-nil
150 if the user option `c-macro-prompt-flag' is non-nil. 151 prompt for arguments to the preprocessor \(e.g. `-DDEBUG -I ./include'),
152 otherwise use `c-macro-cppflags'.
151 153
152 Noninteractive args are START, END, SUBST. 154 Noninteractive args are START, END, SUBST.
153 For use inside Lisp programs, see also `c-macro-expansion'." 155 For use inside Lisp programs, see also `c-macro-expansion'."
154 156
155 (interactive "r\nP") 157 (interactive "r\nP")