Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3d864325
Commit
3d864325
authored
Nov 22, 2008
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Derek Peschel <dpeschel at eskimo.com> (tiny change)
(add_regex): Pass correct length to re_compile_pattern.
parent
8a986865
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lib-src/ChangeLog
lib-src/ChangeLog
+4
-0
lib-src/etags.c
lib-src/etags.c
+1
-1
No files found.
lib-src/ChangeLog
View file @
3d864325
2008-11-22 Derek Peschel <dpeschel@eskimo.com> (tiny change)
* etags.c (add_regex): Pass correct length to re_compile_pattern.
2008-11-02 Chong Yidong <cyd@stupidchicken.com>
* emacsclient.c (window_system): Delete redundant variable.
...
...
lib-src/etags.c
View file @
3d864325
...
...
@@ -5881,7 +5881,7 @@ add_regex (regexp_pattern, lang)
else
re_set_syntax (RE_SYNTAX_EMACS);
err = re_compile_pattern (pat, strlen (
regexp_pattern
), patbuf);
err = re_compile_pattern (pat, strlen (
pat
), patbuf);
if (multi_line)
free (pat);
if (err != NULL)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment