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

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

[nongnu] elpa/d-mode 0268bde 022/346: Added __vector as a keyword in the


From: ELPA Syncer
Subject: [nongnu] elpa/d-mode 0268bde 022/346: Added __vector as a keyword in the same categories at const and shared.
Date: Sun, 29 Aug 2021 10:59:57 -0400 (EDT)

branch: elpa/d-mode
commit 0268bde7ca6f188950486a8b55e380128223506d
Author: Russel Winder <russel@winder.org.uk>
Commit: Russel Winder <russel@winder.org.uk>

    Added __vector as a keyword in the same categories at const and shared.
    
    Amended some of the header comments to point to the information being 
metadata in the Git
    repository rather than data in the file itself.
    
    Amended the date and updated the version to be 2.0.6 release candidate 1.
---
 d-mode.el | 26 ++++++++++----------------
 1 file changed, 10 insertions(+), 16 deletions(-)

diff --git a/d-mode.el b/d-mode.el
index a240866..61d2124 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -6,8 +6,8 @@
 ;; Contributors:  Russel Winder
 ;; Maintainer:  Russel Winder
 ;; Created:  March 2007
-;; Date:  2012-08-22
-;; Version:  2.0.6-SNAPSHOT
+;; Date:  2013-07-07
+;; Version:  2.0.6-RC-1
 ;; Keywords:  D programming language emacs cc-mode
 
 ;; This program is free software; you can redistribute it and/or modify
@@ -45,20 +45,14 @@
 ;;
 ;;
 ;; TODO:
-;;   * I tried making "with" "version" and "extern" be their own
-;;     c-other-block-decl-kwds.  Which is supposed to mean that you
-;;     can control the indentation on the block following them
-;;     individually.  It didn't seem to work right though.
+;;   Issues with this code are managed via the project issue management
+;;   on GitHub: 
https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/issues?state=open
+;;
 ;;
 ;; 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).
-;;   * 2007 April - 2.0.3 - new 'ref' and 'macro' keywords.
-;;   * 2007 March 3 - Verision 2.0.1 - bugfixes for emacs 21 and
-;;      user-installed cc-mode.  Byte compilation was failing.
-;;   * 2007 March 3 - Release of 2.0.0 version
+;;   History is tracked in the Git repository rather than in this file.
+;;   See 
https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/commits/master
+;;
 
 ;;----------------------------------------------------------------------------
 ;; Code:
@@ -154,7 +148,7 @@ operators."
   d '("__gshared" "auto" "abstract" "const" "deprecated" "extern"
       "final" "immutable" "inout" "lazy" "mixin" "override" "private"
       "protected" "public" "scope" "shared" "static" "synchronized"
-      "volatile"))
+      "volatile" "__vector"))
 
 (c-lang-defconst c-class-decl-kwds
   ;; Keywords introducing declarations where the following block (if any)
@@ -166,7 +160,7 @@ operators."
 
 (c-lang-defconst c-type-modifier-kwds
   d '("__gshared" "const" "immutable" "inout" "lazy" "shared" "volatile"
-      "invariant" "enum"))
+      "invariant" "enum" "__vector"))
 
 (c-lang-defconst c-type-prefix-kwds
   ;; Keywords where the following name - if any - is a type name, and



reply via email to

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