mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-03 22:20:52 -08:00
(sdb): Handle tags-file-name as nil.
This commit is contained in:
parent
c9b67b7b03
commit
e290aebbf9
1 changed files with 3 additions and 1 deletions
|
|
@ -404,7 +404,9 @@ and source-file directory for your debugger."
|
|||
nil nil
|
||||
'(gud-sdb-history . 1))))
|
||||
(if (and gud-sdb-needs-tags
|
||||
(not (and (boundp 'tags-file-name) (file-exists-p tags-file-name))))
|
||||
(not (and (boundp 'tags-file-name)
|
||||
(stringp tags-file-name)
|
||||
(file-exists-p tags-file-name))))
|
||||
(error "The sdb support requires a valid tags table to work."))
|
||||
(gud-overload-functions '((gud-massage-args . gud-sdb-massage-args)
|
||||
(gud-marker-filter . gud-sdb-marker-filter)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue