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
17276ed3
Commit
17276ed3
authored
Mar 31, 1993
by
Roland McGrath
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(etags-tags-completion-table): Use skip-syntax-backward instead of
skip-chars-backward.
parent
79d0c1e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
lisp/progmodes/etags.el
lisp/progmodes/etags.el
+3
-4
No files found.
lisp/progmodes/etags.el
View file @
17276ed3
...
...
@@ -854,20 +854,19 @@ See documentation of variable `tags-file-name'."
(
while
(
search-forward
"\177"
nil
t
)
;; Handle multiple \177's on a line.
(
save-excursion
(
skip-
chars
-backward
"
^-A-Za-z0-9_$\n"
)
;sym syntax? XXX
(
skip-
syntax
-backward
"
w_"
)
(
or
(
bolp
)
(
intern
(
buffer-substring
(
point
)
(
progn
(
skip-
chars
-backward
"
-A-Za-z0-9_$
"
)
(
skip-
syntax
-backward
"
w_
"
)
;; ??? New
;; `::' in the middle of a C++ tag.
(
and
(
=
(
preceding-char
)
?:
)
(
=
(
char-after
(
-
(
point
)
2
))
?:
)
(
progn
(
backward-char
2
)
(
skip-chars-backward
"-A-Za-z0-9_$"
)))
(
skip-syntax-backward
"w_"
)))
(
point
)))
table
)))))
table
))
...
...
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