[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 7/8] cleanup: remove subroutine '&saw_sources_p'
From: |
Stefano Lattarini |
Subject: |
[PATCH 7/8] cleanup: remove subroutine '&saw_sources_p' |
Date: |
Fri, 8 Jun 2012 10:20:29 +0200 |
* automake.in (saw_sources_p): Remove, its implementation is now so
trivial that it's easier to inline it into ...
(handle_languages): ... it's only caller.
Signed-off-by: Stefano Lattarini <address@hidden>
---
automake.in | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/automake.in b/automake.in
index ebafe08..ab8cf00 100644
--- a/automake.in
+++ b/automake.in
@@ -1301,7 +1301,7 @@ sub handle_languages
{
# Include auto-dep code. Don't include it if DEP_FILES would
# be empty.
- if (&saw_sources_p && keys %dep_files)
+ if (keys %extension_seen && keys %dep_files)
{
# Set location of depcomp.
&define_variable ('depcomp',
@@ -6051,13 +6051,6 @@ sub saw_extension
}
}
-# Called to ask whether source files (not headers) have been seen.
-sub saw_sources_p
-{
- return scalar keys %extension_seen;
-}
-
-
# register_language (%ATTRIBUTE)
# ------------------------------
# Register a single language.
--
1.7.9.5
- [PATCH 0/8] {master} Some simplifications in tags support, Stefano Lattarini, 2012/06/08
- [PATCH 3/8] tags: new var $(am__tagged_files) to list all files to run taggers on, Stefano Lattarini, 2012/06/08
- [PATCH 4/8] tags: look at $(am__tagged_files) to decide whether to activate, Stefano Lattarini, 2012/06/08
- [PATCH 1/8] tags (ID, cscope): also process config header (if any), Stefano Lattarini, 2012/06/08
- [PATCH 2/8] tags (cscope): also process $(TAGS_FILES), Stefano Lattarini, 2012/06/08
- [PATCH 8/8] cleanup: simplify subroutine '&saw_extension', Stefano Lattarini, 2012/06/08
- [PATCH 6/8] cleanup: remove unused '&count_files_for_language' subroutine, Stefano Lattarini, 2012/06/08
- [PATCH 5/8] automake: simplify '&saw_sources_p', Stefano Lattarini, 2012/06/08
- [PATCH 7/8] cleanup: remove subroutine '&saw_sources_p',
Stefano Lattarini <=
- Re: [PATCH 0/8] {master} Some simplifications in tags support, Stefano Lattarini, 2012/06/09