emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/d-mode 0d74ef6 003/346: RW takes responsibility for being


From: ELPA Syncer
Subject: [nongnu] elpa/d-mode 0d74ef6 003/346: RW takes responsibility for being maintainer of the code.
Date: Sun, 29 Aug 2021 10:59:55 -0400 (EDT)

branch: elpa/d-mode
commit 0d74ef69c8caa33266d36e56dc01fd6392c8091e
Author: Russel Winder <russel@russel.org.uk>
Commit: Russel Winder <russel@russel.org.uk>

    RW takes responsibility for being maintainer of the code.
    Add immutable as a type modifying keyword so as to get the gith colouring.
---
 d-mode.el | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/d-mode.el b/d-mode.el
index 6af05ae..8997829 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -3,9 +3,10 @@
 
 ;; Author:     2007 William Baxter
 ;; Contributors: Andrei Alexandrescu
-;; Maintainer: William Baxter
+;; Contributors: Russel Winder
+;; Maintainer: Russel Winder
 ;; Created:    March 2007
-;; Version:    2.0.4 (February 2008)
+;; Version:    2.0.5-SNAPSHOT (2010-11-13)
 ;; Keywords:   D programming language emacs cc-mode
 
 ;; This program is free software; you can redistribute it and/or modify
@@ -49,6 +50,7 @@
 ;;     individually.  It didn't seem to work right though.
 ;;
 ;; History:
+;;   * 2010-11-13 -- 2.0.5-SNAPSHOT add immutable as a keyword.
 ;;   * 2008 February - 2.0.4 - fixed "else static if" indentation problem, 
 ;;      and also a problem with "debug if()" indentation.
 ;;      Some D2 additions (invariant as type modifier etc).
@@ -148,7 +150,7 @@ operators."
 ;; Keywords that can prefix normal declarations of identifiers
 (c-lang-defconst c-modifier-kwds
   d '("auto" "abstract" "const" "deprecated" "extern" 
-      "final" "lazy" "private" "protected" "public"
+      "final" "immutable" "lazy" "private" "protected" "public"
       "scope" "static" "synchronized" "volatile" "mixin"))
 
 (c-lang-defconst c-class-decl-kwds
@@ -160,7 +162,7 @@ operators."
 ;;   d '("enum"))
 
 (c-lang-defconst c-type-modifier-kwds
-  d '("const" "lazy" "volatile" "invariant" "enum")
+  d '("const" "immutable" "lazy" "volatile" "invariant" "enum")
 )
 (c-lang-defconst c-type-prefix-kwds
   ;; Keywords where the following name - if any - is a type name, and
@@ -389,4 +391,4 @@ Key bindings:
 
 (provide 'd-mode)
 
-;;; d-mode.el ends here
\ No newline at end of file
+;;; d-mode.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]