Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a48b489e
Commit
a48b489e
authored
Apr 27, 2006
by
Jay Belanger
Browse files
(calc-embedded-make-info): Use `math-read-expr' when
`math-read-big-expr' doesn't work.
parent
cb58ea33
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/calc/calc-embed.el
lisp/calc/calc-embed.el
+3
-1
No files found.
lisp/ChangeLog
View file @
a48b489e
2006-04-27 Jay Belanger <belanger@truman.edu>
* calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
read expression when `math-read-big-expr' doesn't work.
2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
* startup.el (command-line-1): Display warning when
...
...
lisp/calc/calc-embed.el
View file @
a48b489e
...
...
@@ -932,7 +932,9 @@ The command \\[yank] can retrieve it from there."
(
substring
str
pref-len
suff-pos
)))
(
if
(
string-match
"[^ \t\n]"
str
)
(
setq
pref-len
0
val
(
math-read-big-expr
str
))
val
(
condition-case
nil
(
math-read-big-expr
str
)
(
error
(
math-read-expr
str
))))
(
setq
val
nil
))))
(
if
(
eq
(
car-safe
val
)
'error
)
(
setq
val
(
list
'error
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment