aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/make-docfile.c
diff options
context:
space:
mode:
authorGlenn Morris2012-08-10 14:23:45 -0400
committerGlenn Morris2012-08-10 14:23:45 -0400
commit25e65510a3d35524ade205c3114970c43dc6ae05 (patch)
treed7a273c6b8cc4fbecaaae8d237950d26acaf8d66 /lib-src/make-docfile.c
parent1530c98e56d331a21ba7ef2c940d1441442ac798 (diff)
downloademacs-25e65510a3d35524ade205c3114970c43dc6ae05.tar.gz
emacs-25e65510a3d35524ade205c3114970c43dc6ae05.zip
Move IF_LINT from lisp.h to conf_post.h
* src/conf_post.h (IF_LINT, lint_assume): Move here from lisp.h. * src/lisp.h (IF_LINT, lint_assume): Move to conf_post.h. * lib-src/make-docfile.c (IF_LINT): * lib-src/emacsclient.c (IF_LINT): Remove (in config.h now).
Diffstat (limited to 'lib-src/make-docfile.c')
-rw-r--r--lib-src/make-docfile.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c
index 627f4639aaa..dafb7c0afd9 100644
--- a/lib-src/make-docfile.c
+++ b/lib-src/make-docfile.c
@@ -63,13 +63,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
63#define READ_BINARY "r" 63#define READ_BINARY "r"
64#endif /* not DOS_NT */ 64#endif /* not DOS_NT */
65 65
66/* Use this to suppress gcc's `...may be used before initialized' warnings. */
67#ifdef lint
68# define IF_LINT(Code) Code
69#else
70# define IF_LINT(Code) /* empty */
71#endif
72
73static int scan_file (char *filename); 66static int scan_file (char *filename);
74static int scan_lisp_file (const char *filename, const char *mode); 67static int scan_lisp_file (const char *filename, const char *mode);
75static int scan_c_file (char *filename, const char *mode); 68static int scan_c_file (char *filename, const char *mode);