1
Fork 0
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:
Richard M. Stallman 1994-05-12 02:14:13 +00:00
parent c9b67b7b03
commit e290aebbf9

View file

@ -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)