summarylogtreecommitdiffstats
path: root/phreeqc.el
diff options
context:
space:
mode:
authordtbaumann2019-04-16 18:35:00 +0200
committerdtbaumann2019-04-16 18:35:00 +0200
commite3f2fb2e2f73612b546f4889748b8e9358d51d35 (patch)
tree1d076c9301f1254dfbd3c7aee03ad5919f0b28b1 /phreeqc.el
parentd7e8ec4eeebd4a24b3b90cd9638bc020c305a3d1 (diff)
downloadaur-e3f2fb2e2f73612b546f4889748b8e9358d51d35.tar.gz
upgpkg: phreeqc-3.5.0
Diffstat (limited to 'phreeqc.el')
-rw-r--r--phreeqc.el18
1 files changed, 8 insertions, 10 deletions
diff --git a/phreeqc.el b/phreeqc.el
index 4f80c4bf5683..a6ce909a1261 100644
--- a/phreeqc.el
+++ b/phreeqc.el
@@ -1,6 +1,6 @@
;;; phreeqc.el --- Phreeqe code editing commands for Emacs
-;; Copyright (C) 2000,2015 dr. thomas baumann
+;; Copyright (C) 2000,2017 dr. thomas baumann
;; Author: Dr. Thomas Baumann
;; Keywords: languages
@@ -29,7 +29,7 @@
;; for automated loading add
;;
;; (autoload 'phreeqc-mode "phreeqc" "PhreeqC editing mode" t)
-;; (setq auto-mode-alist (append '(("\\.phrq$" . phreeqc-mode)) auto-mode-alist))
+;; (setq auto-mode-alist (append '(("\\.\\(phrq\\|pqi\\)$" . phreeqc-mode)) auto-mode-alist))
;;
;; to your .emacs file
@@ -53,7 +53,7 @@
:group 'phreeqc)
(defcustom phreeqc-manual-fn "/usr/share/doc/phreeqc/Phreeqc_3_2013_manual.pdf"
- "Name and path of the default thermodynamic database."
+ "Name and path of the PhreeqC manual."
:type 'string
:group 'phreeqc)
@@ -62,8 +62,6 @@
:type 'string
:group 'phreeqc)
-
-
(defcustom phreeqc-indent 4
"*This variable gives the indentation in Phreeqc-Mode."
:type 'integer
@@ -397,12 +395,12 @@ with no args, if that value is non-nil."
(phreeqc-goto-error)
(font-lock-fontify-buffer)
;; (folding-mode t)
-;; (folding-shift-in)
+;; (folding-shift-in t)
)
(font-lock-fontify-buffer)) t)
(read-only-mode t)
- (auto-revert-mode t)
+;; (auto-revert-mode t)
(if (phreeqc-run-fail-p)
(phreeqc-goto-error)
;; (folding-mode t)
@@ -445,7 +443,7 @@ with no args, if that value is non-nil."
"Move to next simulation in folded output mode."
(interactive)
(if folding-stack
- (folding-shift-out))
+ (folding-shift-out t))
(next-line)
(folding-next-visible-heading)
(folding-shift-in))
@@ -454,9 +452,9 @@ with no args, if that value is non-nil."
"Move to previous simulation in folded output mode."
(interactive)
(if folding-stack
- (folding-shift-out))
+ (folding-shift-out t))
(folding-next-visible-heading 1)
- (folding-shift-in))
+ (folding-shift-in t))
(defun phreeqc-compile ()