]> git.eshelyaron.com Git - emacs.git/commitdiff
; Add several "duplicate value in `cond`" FIXMEs
authorStefan Kangas <stefankangas@gmail.com>
Sun, 1 Oct 2023 17:00:26 +0000 (19:00 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Sun, 1 Oct 2023 17:00:26 +0000 (19:00 +0200)
* lisp/gnus/gnus-cloud.el (gnus-cloud-decode-data):
* lisp/org/org.el (org-read-date-analyze):
* lisp/org/ox-html.el (org-html-latex-fragment):
Add several "duplicate value in `cond`" FIXMEs.
Found by Mattias Engdegård <mattias.engdegard@gmail.com>.
Ref: https://debbugs.gnu.org/51368#51

lisp/gnus/gnus-cloud.el
lisp/org/org.el
lisp/org/ox-html.el

index ae4c4cc0d715a3af46749be1bc0c99f584a8a85b..a21d57d86ffc9629355ff7170235088e5dfaa6a4 100644 (file)
@@ -148,6 +148,7 @@ easy interactive way to set this from the Server buffer."
 
 (defun gnus-cloud-decode-data ()
   (cond
+   ;; FIXME: Duplicated value in ‘cond’: base64-gzip.
    ((memq gnus-cloud-storage-method '(base64 base64-gzip))
     (base64-decode-region (point-min) (point-max)))
 
index 5a600a84f22c18564ef8432579f73d9420e4b272..9ca7f1556147e4bd2548c26c196283499803ee3d 100644 (file)
@@ -14035,6 +14035,7 @@ user."
       (unless deltadef
        (let ((now (decode-time)))
          (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
+      ;; FIXME: Duplicated value in ‘cond’: ""
       (cond ((member deltaw '("h" ""))
              (when (boundp 'org-time-was-given)
                (setq org-time-was-given t))
index b27254b8ac5badb0a75ca991c410583867d098f8..cfad311207a0b8f4b00a9a7a0f8f6cf6f9fb1065 100644 (file)
@@ -3094,6 +3094,7 @@ CONTENTS is nil.  INFO is a plist holding contextual information."
   (let ((latex-frag (org-element-property :value latex-fragment))
        (processing-type (plist-get info :with-latex)))
     (cond
+     ;; FIXME: Duplicated value in ‘cond’: t
      ((memq processing-type '(t mathjax))
       (org-html-format-latex latex-frag 'mathjax info))
      ((memq processing-type '(t html))