We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea75ea commit 51c73f0Copy full SHA for 51c73f0
php-mode.el
@@ -1377,8 +1377,10 @@ current `tags-file-name'."
1377
"`php-completion-file' or `php-manual-path' set")))
1378
(when tags-table
1379
;; Combine the tables.
1380
- (mapatoms (lambda (sym) (intern (symbol-name sym) php-table))
1381
- tags-table))
+ (if (obarrayp tags-table)
+ (mapatoms (lambda (sym) (intern (symbol-name sym) php-table))
1382
+ tags-table)
1383
+ (setq php-table (append tags-table php-table))))
1384
(setq php-completion-table php-table))))
1385
1386
(defun php-build-table-from-file (filename)
0 commit comments