(require 'macroexp)
(eval-when-compile (require 'cl-lib))
+;; Autoloaded, but we have not loaded cl-loaddefs yet.
+(declare-function cl-member "cl-seq" (cl-item cl-list &rest cl-keys))
;;----------------------------------------------------------------------------
;; User-customizable variables
;;in the new list.
(dolist (ref oldref)
(unless (memq ref newref)
- ;; because we do not cancel edit when the user provides a
+ ;; Because we do not cancel edit when the user provides a
;; false reference in it, then we need to check that ref
;; points to a cell that is within the spreadsheet.
(when
(and (setq x (ses-sym-rowcol ref))
(< (setq xrow (car x)) ses--numrows)
(< (setq xcol (cdr x)) ses--numcols))
- ;; cell ref has to be re-written to data area as its
- ;; reference list is changed
+ ;; Cell reference has to be re-written to data area as its
+ ;; reference list is changed.
(cl-pushnew x ses--deferred-write :test #'equal)
(ses-set-cell xrow xcol 'references
(delq sym (ses-cell-references xrow xcol))))))
(< (setq xrow (car x)) ses--numrows)
(< (setq xcol (cdr x)) ses--numcols))
(unless (memq sym (setq xref (ses-cell-references xrow xcol)))
- ;; cell ref has to be re-written to data area as its
- ;; reference list is changed
+ ;; Cell reference has to be re-written to data area as
+ ;; its reference list is changed.
(cl-pushnew x ses--deferred-write :test #'equal)
(ses-set-cell xrow xcol 'references (cons sym xref)))
(cl-pushnew ref not-a-cell-ref-list)))
(should (eq (ses--cell-at-pos (point)) 'ses--toto)))))
(ert-deftest ses-set-formula-write-cells-with-changed-references ()
- "Fix of bug#5852. When setting a formula has some cell with
-changed references, this cell has to be rewritten to data area."
+ "Test fix of bug#5852.
+When setting a formula has some cell with changed references, this
+cell has to be rewritten to data area."
(let ((ses-initial-size '(4 . 3))
ses-after-entry-functions beg)
(with-temp-buffer