|
@@ -3492,12 +3492,13 @@ overwritten, and the table is not marked as requiring realignment."
|
|
|
(self-insert-command N))
|
|
|
(setq org-table-may-need-update t)
|
|
|
(let (orgtbl-mode a)
|
|
|
- (call-interactively
|
|
|
- (key-binding
|
|
|
- (or (and (listp function-key-map)
|
|
|
- (setq a (assoc last-input-event function-key-map))
|
|
|
- (cdr a))
|
|
|
- (vector last-input-event)))))))
|
|
|
+ (call-interactively
|
|
|
+ (or (key-binding
|
|
|
+ (or (and (listp function-key-map)
|
|
|
+ (setq a (assoc last-input-event function-key-map))
|
|
|
+ (cdr a))
|
|
|
+ (vector last-input-event)))
|
|
|
+ 'self-insert-command)))))
|
|
|
|
|
|
(defvar orgtbl-exp-regexp "^\\([-+]?[0-9][0-9.]*\\)[eE]\\([-+]?[0-9]+\\)$"
|
|
|
"Regular expression matching exponentials as produced by calc.")
|