Skip to content

Commit

Permalink
Version 6.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiroTakeda committed Dec 3, 2016
1 parent dcc45c6 commit a803f9e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ sample_gams_code/test.*
copy_files.bat
new/
emacs.exe.stackdump
identifier/
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
<!--
Author: Shiro Takeda
Maintainer: Shiro Takeda
Time-stamp: <2016-09-23 19:30:42 st>
Time-stamp: <2016-12-03 19:30:23 st>
-->

----------------------------------------------------

Change logs of GAMS mode.
====================================================

Version 6.1.2 (2016-12-03)
----------------------------------

* Added a customizable variable `gams-sil-display-column-num`. This
variable determiens the column width for displaying identifer name in
GAMS-SIL mode.

* Made changes to display names of parameters, variables and equations
with index (set) in GAMS-SIL mode.


Version 6.1.1 (2016-09-23)
----------------------------------

Expand Down
10 changes: 5 additions & 5 deletions gams-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
;; Maintainer: Shiro Takeda
;; Copyright (C) 2001-2016 Shiro Takeda
;; First Created: Sun Aug 19, 2001 12:48 PM
;; Time-stamp: <2016-11-29 10:10:56 st>
;; Version: 6.1.1
;; Time-stamp: <2016-12-03 19:30:51 st>
;; Version: 6.1.2
;; Keywords: GAMS
;; URL: http://shirotakeda.org/en/gams/gams-mode/
;; This file is not part of any Emacs.
Expand Down Expand Up @@ -74,7 +74,7 @@
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(defconst gams-mode-version "6.1.1"
(defconst gams-mode-version "6.1.2"
"Version of GAMS mode.")

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Expand Down Expand Up @@ -355,12 +355,12 @@ Non-nil may make the speed of template-mode slow."
:type 'number
:group 'gams)

(defcustom gams-sil-window-width 40
(defcustom gams-sil-window-width 50
"The default width of GAMS-SIL buffer."
:type 'number
:group 'gams)

(defcustom gams-sid-tree-buffer-width 30
(defcustom gams-sid-tree-buffer-width 40
"Width of GAMS-SID Tree buffer."
:type 'integer
:group 'gams)
Expand Down

0 comments on commit a803f9e

Please sign in to comment.