branch: elpa/d-mode
commit 441761c4592d75510864a443adfff738988e753b
Author: Vladimir Panteleev <[email protected]>
Commit: Vladimir Panteleev <[email protected]>
Delete old keyword lists for imenu
---
d-mode.el | 18 +-----------------
1 file changed, 1 insertion(+), 17 deletions(-)
diff --git a/d-mode.el b/d-mode.el
index d6bae36..fab1595 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -7,7 +7,7 @@
;; Maintainer: Russel Winder <[email protected]>
;; Vladimir Panteleev <[email protected]>
;; Created: March 2007
-;; Version: 201909092103
+;; Version: 201909092106
;; Keywords: D programming language emacs cc-mode
;; Package-Requires: ((emacs "25.1"))
@@ -381,22 +381,6 @@ The expression is added to
`compilation-error-regexp-alist' and
d (append (list "delete" "throw")
(c-lang-const d-type-modifier-kwds)))
-;; D: Like `c-regular-keywords-regexp', but contains keywords which
-;; cannot occur in a function type.
-(c-lang-defconst d-non-func-type-kwds-re
- d (concat "\\<"
- (c-make-keywords-re t
- (c--set-difference (c-lang-const c-keywords)
- (append (c-lang-const c-primitive-type-kwds)
- (c-lang-const
d-decl-storage-class-kwds))
- :test 'string-equal))))
-
-;; D: Like `c-regular-keywords-regexp', but contains keywords which
-;; cannot occur in a function name.
-(c-lang-defconst d-non-func-name-kwds-re
- d (concat "\\<"
- (c-make-keywords-re t (c-lang-const c-keywords))))
-
(c-lang-defconst c-block-stmt-1-kwds
;; Statement keywords followed directly by a substatement.
d '("do" "else" "finally" "try" "in" "body"))