diff options
author | Paul Smith <psmith@gnu.org> | 2000-02-05 07:37:40 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-02-05 07:37:40 +0000 |
commit | 9b0a3d91ea594ff1afe7b8ec83ff41ba828d243b (patch) | |
tree | b35695ad78c82d25f7e60d4c93880394a2a970b3 /filedef.h | |
parent | 95a09e94f7b4155913cb4b1a0e6c1576780f09d1 (diff) | |
download | gunmake-9b0a3d91ea594ff1afe7b8ec83ff41ba828d243b.tar.gz |
* Fix PR/1407.
* Keep filename/lineno information for variables, for debugging.
Diffstat (limited to 'filedef.h')
-rw-r--r-- | filedef.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -48,6 +48,10 @@ struct file /* List of variable sets used for this file. */ struct variable_set_list *variables; + /* Pattern-specific variable reference for this target, or null if there + isn't one. Also see the pat_searched flag, below. */ + struct variable_set_list *pat_variables; + /* Immediate dependent that caused this target to be remade, or nil if there isn't one. */ struct file *parent; @@ -56,10 +60,6 @@ struct file the same file. Otherwise this is null. */ struct file *double_colon; - /* Pattern-specific variable reference for this target, or null if there - isn't one. Also see the pat_searched flag, below. */ - struct pattern_var *patvar; - short int update_status; /* Status of the last attempt to update, or -1 if none has been made. */ |