branch: elpa/d-mode
commit 473fa335dbcbb55158f5fe4dde32c89c76db3cf9
Author: finalpatch <[email protected]>
Commit: finalpatch <[email protected]>
Revert the 'Emergency Emacs 23 fixes'
---
d-mode.el | 18 ++++--------------
1 file changed, 4 insertions(+), 14 deletions(-)
diff --git a/d-mode.el b/d-mode.el
index 5195772..a0983fc 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -125,13 +125,8 @@
"List of the tokens made up of characters in the punctuation or
parenthesis syntax classes that have uses other than as expression
operators."
-
-; Emergency Emacs 23 fixes from
http://www.prowiki.org/wiki4d/wiki.cgi?EditorSupport/EmacsDMode
-
-; d (append '("/+" "+/" "..." ".." "!" "*" "&")
-; (c-lang-const c-other-op-syntax-tokens)))
-
- d '("/+" "+/" "..." ".." "!" "*" "&"))
+ d (append '("/+" "+/" "..." ".." "!" "*" "&")
+ (c-lang-const c-other-op-syntax-tokens)))
(c-lang-defconst c-block-comment-starter d "/*")
(c-lang-defconst c-block-comment-ender d "*/")
@@ -197,13 +192,8 @@ operators."
;; d '("with" "version" "extern"))
(c-lang-defconst c-typedef-decl-kwds
-
-; Emergency Emacs 23 fixes from
http://www.prowiki.org/wiki4d/wiki.cgi?EditorSupport/EmacsDMode
-
-; d (append (c-lang-const c-typedef-decl-kwds)
-; '("typedef" "alias")))
-
- d '("typedef" "alias"))
+ d (append (c-lang-const c-typedef-decl-kwds)
+ '("typedef" "alias")))
(c-lang-defconst c-decl-hangon-kwds
d '("export"))