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
e7905671
Commit
e7905671
authored
Nov 21, 2001
by
Colin Walters
Browse files
(calc-slow-wrapper): Move (point) call outside of (function ...)
wrapper.
parent
e95768c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/calc/calc-macs.el
lisp/calc/calc-macs.el
+1
-1
No files found.
lisp/ChangeLog
View file @
e7905671
2001-11-21 Colin Walters <walters@debian.org>
* calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
of (function ...) wrapper.
2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
* derived.el (define-derived-mode): Create the abbrev-table
...
...
lisp/calc/calc-macs.el
View file @
e7905671
...
...
@@ -36,7 +36,7 @@
(
defmacro
calc-slow-wrapper
(
&rest
body
)
`
(
calc-do
(
function
(
lambda
()
,@
body
)
(
point
)))
)
(
function
(
lambda
()
,@
body
)
)
(
point
)))
(
defmacro
math-showing-full-precision
(
form
)
`
(
let
((
calc-float-format
calc-full-float-format
))
...
...
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