Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
bd761b7d
...
bd761b7d07ae7ff9ead6e060977e91b4ace8ee73
authored
2004-01-05 13:54:54 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(push_source,pop_source): Include line info
1 parent
9b7dc272
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
libsieve/sieve.l
libsieve/sieve.l
View file @
bd761b7
...
...
@@ -287,6 +287,10 @@ push_source (const char *name)
sieve_filename = strdup (name);
sieve_line_num = 1;
sieve_source_inode = st.st_ino;
sieve_code_source (sieve_filename);
sieve_code_line (sieve_line_num);
return 0;
}
...
...
@@ -316,6 +320,10 @@ pop_source ()
ctx = context_stack->prev;
free (context_stack);
context_stack = ctx;
sieve_code_source (sieve_filename);
sieve_code_line (sieve_line_num);
return 0;
}
%}
...
...
Please
register
or
sign in
to post a comment