mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-17 19:30:38 -08:00
calc-aent.el (math-read-token, math-find-user-tokens):
calc-lang.el (math-read-big-rec, math-lang-read-symbol) (math-compose-tex-func): calccomp.el (math-compose-expr): calc-ext.el (math-format-flat-expr-fancy): calc-store.el (calc-read-var-name): calc-units.el (calc-explain-units-rec): Allow Greek letters. calc.el (var-π, var-φ, var-γ): New variables. calc-aent.el (math-read-replacement-list): Add "micro" symbol. calc-units.el (math-unit-prefixes): Add mu for micro. (math-standard-units): Add units.
This commit is contained in:
parent
7aefa4457f
commit
ae6bc504c0
8 changed files with 64 additions and 35 deletions
|
|
@ -999,9 +999,12 @@ Used by `calc-user-invocation'.")
|
|||
(defvar math-working-step-2 nil)
|
||||
(defvar var-i '(special-const (math-imaginary 1)))
|
||||
(defvar var-pi '(special-const (math-pi)))
|
||||
(defvar var-π '(special-const (math-pi)))
|
||||
(defvar var-e '(special-const (math-e)))
|
||||
(defvar var-phi '(special-const (math-phi)))
|
||||
(defvar var-φ '(special-const (math-phi)))
|
||||
(defvar var-gamma '(special-const (math-gamma-const)))
|
||||
(defvar var-γ '(special-const (math-gamma-const)))
|
||||
(defvar var-Modes '(special-const (math-get-modes-vec)))
|
||||
|
||||
(mapc (lambda (v) (or (boundp v) (set v nil)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue