Skip to content

Commit

Permalink
Version 1.11 release
Browse files Browse the repository at this point in the history
Correct some customization links to the manual.
  • Loading branch information
fjwright committed Feb 7, 2024
1 parent ea8a5e0 commit ee51019
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Major modes for editing and running REDUCE source code

**[Francis Wright](https://sites.google.com/site/fjwcentaur)**

Version 1.11alpha, February 2024
Version 1.11, February 2024

REDUCE IDE is a package that provides an Integrated Development Environment for the [REDUCE computer algebra system](https://reduce-algebra.sourceforge.io/) within the GNU Emacs editor. Its two major components are Emacs Lisp libraries that provide major modes for editing REDUCE source code and running a *command-line version* of REDUCE in an Emacs window. It assumes that Emacs is running under a GUI such as Microsoft Windows or the X Window System under some flavour of UNIX or Linux, and displays Unicode character sets correctly. REDUCE IDE does not include REDUCE, which is available separately from [SourceForge](https://sourceforge.net/projects/reduce-algebra/). You don't need to install REDUCE in order to edit REDUCE source code using REDUCE IDE, but if you want to run REDUCE in REDUCE IDE then you do need to install REDUCE.

Expand Down
2 changes: 1 addition & 1 deletion packages/archive-contents
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(1
(reduce-ide
. [(1 11 -3) ((emacs (27)))
. [(1 11) ((emacs (27)))
;; See function `version-to-list':
;; git = -4, alpha = -3, beta = -2, pre = -1
"REDUCE Integrated Development Environment" tar
Expand Down
4 changes: 2 additions & 2 deletions reduce-ide.texinfo
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
@c %**start of header
@settitle GNU Emacs REDUCE Integrated Development Environment
@c Manual last updated:
@set UPDATED Time-stamp: <2024-02-04 18:35:44 franc>
@set UPDATED Time-stamp: <2024-02-07 17:25:01 franc>
@c Software version:
@set VERSION 1.11alpha
@set VERSION 1.11
@afourpaper
@c With different size paper the printed page breaks will need attention!
@c Look for @page and @need commands.
Expand Down
4 changes: 2 additions & 2 deletions reduce-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

;; Author: Francis J. Wright <https://sites.google.com/site/fjwcentaur>
;; Created: late 1992
;; Time-stamp: <2024-02-04 11:09:27 franc>
;; Time-stamp: <2024-02-07 17:25:00 franc>
;; Homepage: https://reduce-algebra.sourceforge.io/reduce-ide/
;; Package-Version: 1.11alpha
;; Package-Version: 1.11
;; Package-Requires: (cl-lib)

;; This file is part of REDUCE IDE.
Expand Down
12 changes: 6 additions & 6 deletions reduce-run.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

;; Author: Francis J. Wright <https://sites.google.com/site/fjwcentaur>
;; Created: late 1998
;; Time-stamp: <2024-02-04 18:37:03 franc>
;; Time-stamp: <2024-02-07 18:05:02 franc>
;; Keywords: languages, processes
;; Homepage: https://reduce-algebra.sourceforge.io/reduce-ide/

Expand Down Expand Up @@ -166,7 +166,7 @@ include switches. It must invoke a command-line version of
REDUCE; a GUI version will not work!"
:type '(alist :key-type string :value-type string)
:set-after '(reduce-run-installation-directory)
:link '(custom-manual "(reduce-ide)Run REDUCE")
:link '(custom-manual "(reduce-ide)Running")
:group 'reduce-run)

(defcustom reduce-run-command-name-default
Expand All @@ -178,7 +178,7 @@ The default is the first command name in ‘reduce-run-commands’."
,@(mapcar #'(lambda (x) (list 'const (car x)))
reduce-run-commands))
:set-after '(reduce-run-commands)
:link '(custom-manual "(reduce-ide)Run REDUCE")
:link '(custom-manual "(reduce-ide)Running")
:group 'reduce-run
:package-version '(reduce-ide . "1.11"))

Expand All @@ -192,7 +192,7 @@ interrupts, which with a dumb terminal it does not.
A nil value means use the Emacs defaults.
Possible values to try are “Eterm”, “emacs”, “xterm”."
:type '(choice (const :tag "Default" nil) string)
:link '(custom-manual "(reduce-ide)Run REDUCE")
:link '(custom-manual "(reduce-ide)Running")
:group 'reduce-run
:package-version '(reduce-ide . "1.11"))

Expand All @@ -205,15 +205,15 @@ Possible values to try are “Eterm”, “emacs”, “xterm”."
(defcustom reduce-run-autostart t
"If non-nil, automatically start a REDUCE process if necessary."
:type 'boolean
:link '(custom-manual "(reduce-ide)Run REDUCE")
:link '(custom-manual "(reduce-ide)Running")
:group 'reduce-run)

(defcustom reduce-run-multiple t
"If non-nil, always start a new REDUCE process in a new distinct buffer.
Do this even if REDUCE is already running.
If nil, re-use any appropriate running REDUCE process."
:type 'boolean
:link '(custom-manual "(reduce-ide)Run REDUCE")
:link '(custom-manual "(reduce-ide)Running")
:group 'reduce-run)

(defcustom reduce-run-mode-hook nil
Expand Down

0 comments on commit ee51019

Please sign in to comment.