]> git.eshelyaron.com Git - emacs.git/commitdiff
; Simplify last change in shr.el
authorBasil L. Contovounesios <contovob@tcd.ie>
Fri, 17 Jul 2020 11:04:09 +0000 (12:04 +0100)
committerBasil L. Contovounesios <contovob@tcd.ie>
Fri, 17 Jul 2020 11:04:09 +0000 (12:04 +0100)
* lisp/net/shr.el (shr-max-columns): Simplify some function calls.

lisp/net/shr.el

index 1ba615f92a80ce4bdaf8877442ae16342d1b63df..b19df8c6ba96a06fd20627104ec4d6544a9e1aee 100644 (file)
@@ -2585,9 +2585,8 @@ flags that control whether to collect or render objects."
         (setq this 0)
         (dolist (column (dom-children row))
           (when (and (not (stringp column))
-                     (or (eq (dom-tag column) 'td)
-                         (eq (dom-tag column) 'th)))
-            (setq this (+ (1+ this) (length rowspans)))
+                     (memq (dom-tag column) '(td th)))
+            (setq this (+ 1 this (length rowspans)))
             ;; We have a rowspan, which we emulate later in rendering
             ;; by adding an extra column to the following rows.
             (when-let* ((span (dom-attr column 'rowspan)))