aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-11-11 15:01:34 +0000
committerStefan Monnier2004-11-11 15:01:34 +0000
commit3a502e66dc91e7dcca25e099cfa905a2ece24177 (patch)
tree21187a0ce3fada8c66a9ba7326ad26217ade4d40
parentcd9ebbbbca90b7c6ab1e9938cb682c5b424baaf9 (diff)
downloademacs-3a502e66dc91e7dcca25e099cfa905a2ece24177.tar.gz
emacs-3a502e66dc91e7dcca25e099cfa905a2ece24177.zip
(pr-get-symbol): Don't downcase.
-rw-r--r--lisp/ChangeLog25
-rw-r--r--lisp/printing.el5
2 files changed, 16 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e873f621d2c..4a581107e08 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,14 +1,19 @@
12004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * printing.el (pr-get-symbol): Don't downcase.
4
12004-11-10 Jay Belanger <belanger@truman.edu> 52004-11-10 Jay Belanger <belanger@truman.edu>
6
2 * calc/calc-aent.el (calc-do-quick-calc): Use kill-new to append 7 * calc/calc-aent.el (calc-do-quick-calc): Use kill-new to append
3 string to kill-ring. 8 string to kill-ring.
4 9
5 * calc/calc-aent.el (calc-alg-exp, math-toks) 10 * calc/calc-aent.el (calc-alg-exp, math-toks)
6 (math-exp-pos,math-exp-old-pos, math-exp-token) 11 (math-exp-pos,math-exp-old-pos, math-exp-token)
7 (math-exp-keep-spaces, math-exp-str): New variables. 12 (math-exp-keep-spaces, math-exp-str): New variables.
8 (calc-do-alg-entry, calcAlg-equals, calcAlg-edit) 13 (calc-do-alg-entry, calcAlg-equals, calcAlg-edit)
9 (calcAlg-enter): Use declared variable calc-alg-exp. 14 (calcAlg-enter): Use declared variable calc-alg-exp.
10 (math-build-parse-table, math-find-user-token): Use declared 15 (math-build-parse-table, math-find-user-token): Use declared
11 variable math-toks. 16 variable math-toks.
12 (math-read-exprs, math-read-token, calc-check-user-syntax) 17 (math-read-exprs, math-read-token, calc-check-user-syntax)
13 (calc-match-user-syntax, match-factor-after, math-read-factor): 18 (calc-match-user-syntax, match-factor-after, math-read-factor):
14 Use declared variables math-exp-pos math-exp-old-pos. 19 Use declared variables math-exp-pos math-exp-old-pos.
@@ -17,17 +22,17 @@
17 (match-factor-after, math-read-factor): Use declared variable 22 (match-factor-after, math-read-factor): Use declared variable
18 math-exp-token. 23 math-exp-token.
19 (math-read-exprs, math-read-expr-list, math-read-token) 24 (math-read-exprs, math-read-expr-list, math-read-token)
20 (math-read-factor): Use declared variable math-exp-keep-spaces. 25 (math-read-factor): Use declared variable math-exp-keep-spaces.
21 (math-read-exprs, math-read-token): Use declared variable 26 (math-read-exprs, math-read-token): Use declared variable
22 math-exp-str. 27 math-exp-str.
23 (calc-match-user-syntax): Made m a local variable. 28 (calc-match-user-syntax): Made m a local variable.
24 29
25 * calc/calc-ext.el (math-read-expr): Use declared variables 30 * calc/calc-ext.el (math-read-expr): Use declared variables
26 math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token, 31 math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
27 math-exp-keep-spaces. 32 math-exp-keep-spaces.
28 33
29 * calc/calc-forms.el (math-read-angle-bracket): Use declared 34 * calc/calc-forms.el (math-read-angle-bracket): Use declared
30 variables math-exp-pos, math-exp-str. 35 variables math-exp-pos, math-exp-str.
31 36
32 * calc/calc-lang.el (math-parse-tex-sum): Use declared variable 37 * calc/calc-lang.el (math-parse-tex-sum): Use declared variable
33 math-exp-old-pos. 38 math-exp-old-pos.
@@ -35,12 +40,12 @@
35 (math-parse-eqn-prime): Use declared variable math-exp-token. 40 (math-parse-eqn-prime): Use declared variable math-exp-token.
36 41
37 * calc/calc-vec.el (math-read-brackets, math-check-for-commas): 42 * calc/calc-vec.el (math-read-brackets, math-check-for-commas):
38 Use declared variable math-exp-pos. 43 Use declared variable math-exp-pos.
39 (math-check-for-commas): Use declared variable math-exp-str. 44 (math-check-for-commas): Use declared variable math-exp-str.
40 (math-read-brackets): Use declared variables math-exp-old-pos, 45 (math-read-brackets): Use declared variables math-exp-old-pos,
41 math-exp-keep-spaces. 46 math-exp-keep-spaces.
42 (math-read-brackets, math-read-vector, math-read-matrix): Use 47 (math-read-brackets, math-read-vector, math-read-matrix):
43 declared variable math-exp-token. 48 Use declared variable math-exp-token.
44 49
452004-11-10 Stefan Monnier <monnier@iro.umontreal.ca> 502004-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
46 51
diff --git a/lisp/printing.el b/lisp/printing.el
index 3efb53111fd..f466f33c830 100644
--- a/lisp/printing.el
+++ b/lisp/printing.el
@@ -2474,9 +2474,6 @@ See `pr-ps-printer-alist'.")
2474 2474
2475(eval-and-compile 2475(eval-and-compile
2476 (defun pr-get-symbol (name) 2476 (defun pr-get-symbol (name)
2477 ;; Recent versions of easy-menu downcase names before interning them.
2478 (and (fboundp 'easy-menu-name-match)
2479 (setq name (downcase name)))
2480 (or (intern-soft name) 2477 (or (intern-soft name)
2481 (make-symbol name))) 2478 (make-symbol name)))
2482 2479
@@ -6385,5 +6382,5 @@ COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
6385(provide 'printing) 6382(provide 'printing)
6386 6383
6387 6384
6388;;; arch-tag: 9ce9ac3f-0f60-4370-900b-1943215d9d18 6385;; arch-tag: 9ce9ac3f-0f60-4370-900b-1943215d9d18
6389;;; printing.el ends here 6386;;; printing.el ends here