]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix style of comments and doc strings in last change in ses.el
authorEli Zaretskii <eliz@gnu.org>
Fri, 29 Dec 2023 12:32:56 +0000 (14:32 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 29 Dec 2023 12:32:56 +0000 (14:32 +0200)
* lisp/ses.el (ses-cell-set-formula): Fix comments style.
(cl-member): Fix byte-compilation warning.

* test/lisp/ses-tests.el
(ses-set-formula-write-cells-with-changed-references): Doc fix.

lisp/ses.el
test/lisp/ses-tests.el

index b5193c3e4b8a17d28926045b6a7a196a7d6fec8b..618a85aab7007b09b46dd8167b82abeebe37404b 100644 (file)
@@ -69,6 +69,8 @@
 (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
@@ -890,15 +892,15 @@ means Emacs will crash if FORMULA contains a circular list."
       ;;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))))))
@@ -910,8 +912,8 @@ means Emacs will crash if FORMULA contains a circular list."
              (<  (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)))
index e2ff41c587552611e80c8f377eaa88f1660b3d5f..265b448226f98c61d48107883bce8fe09b7358fb 100644 (file)
@@ -242,8 +242,9 @@ to `ses--bar' and inserting a row, makes A2 value empty, and `ses--bar' equal to
       (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