emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/calc/calc-aent.el


From: Jay Belanger
Subject: [Emacs-diffs] Changes to emacs/lisp/calc/calc-aent.el
Date: Mon, 04 Apr 2005 23:50:34 -0400

Index: emacs/lisp/calc/calc-aent.el
diff -c emacs/lisp/calc/calc-aent.el:1.25 emacs/lisp/calc/calc-aent.el:1.26
*** emacs/lisp/calc/calc-aent.el:1.25   Sat Feb 19 19:59:49 2005
--- emacs/lisp/calc/calc-aent.el        Tue Apr  5 03:50:26 2005
***************
*** 519,525 ****
      ("⁽" "(")  ; (
      ("⁾" ")")  ; )
      ("ⁿ" "n")  ; n
!     ("ⁱ" "i")) ; i
    "A list whose elements (old new) indicate replacements to make
  in Calc algebraic input.")
  
--- 519,540 ----
      ("⁽" "(")  ; (
      ("⁾" ")")  ; )
      ("ⁿ" "n")  ; n
!     ("ⁱ" "i")  ; i
!     ;; subscripts
!     ("₀"  "0")  ; 0
!     ("₁"  "1")  ; 1
!     ("₂"  "2")  ; 2
!     ("₃"  "3")  ; 3
!     ("₄"  "4")  ; 4
!     ("₅"  "5")  ; 5
!     ("₆"  "6")  ; 6
!     ("₇"  "7")  ; 7
!     ("₈"  "8")  ; 8
!     ("₉"  "9")  ; 9
!     ("₊"  "+")  ; +
!     ("₋"  "-")  ; -
!     ("₍"  "(")  ; (
!     ("₎"  ")"))  ; )
    "A list whose elements (old new) indicate replacements to make
  in Calc algebraic input.")
  
***************
*** 527,537 ****
--- 542,559 ----
    "⁰¹²³⁴⁵⁶⁷⁸⁹⁺⁻⁽⁾ⁿⁱ" ; 0123456789+-()ni
    "A string consisting of the superscripts allowed by Calc.")
  
+ (defvar math-read-subscripts
+   "₀₁₂₃₄₅₆₇₈₉₊₋₍₎" ; 0123456789+-()
+   "A string consisting of the subscripts allowed by Calc.")
+ 
  (defun math-read-preprocess-string (str)
    "Replace some substrings of STR by Calc equivalents."
    (setq str
          (replace-regexp-in-string (concat "[" math-read-superscripts "]+")
                                    "^(\\&)" str))
+   (setq str
+         (replace-regexp-in-string (concat "[" math-read-subscripts "]+")
+                                   "_(\\&)" str))
    (let ((rep-list math-read-replacement-list))
      (while rep-list
        (setq str




reply via email to

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