aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ses.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ses.el b/lisp/ses.el
index 7fdacc77c9c..37d0d615033 100644
--- a/lisp/ses.el
+++ b/lisp/ses.el
@@ -1509,8 +1509,9 @@ Newlines in the data are escaped."
1509 ,printer 1509 ,printer
1510 ,(ses-cell-references cell)))) 1510 ,(ses-cell-references cell))))
1511 (ses-goto-data row col) 1511 (ses-goto-data row col)
1512 (delete-region (point) (line-end-position)) 1512 (let ((inhibit-quit t))
1513 (insert text))) 1513 (delete-region (point) (line-end-position))
1514 (insert text))))
1514 (message " ")))) 1515 (message " "))))
1515 1516
1516 1517