Procházet zdrojové kódy

ob-core.el: Replace a use of remove with remq

* lisp/ob-core.el (org-babel-del-hlines): Use `remq' for `remove'
Aaron Ecay před 11 roky
rodič
revize
c7dff7105b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      lisp/ob-core.el

+ 1 - 1
lisp/ob-core.el

@@ -1591,7 +1591,7 @@ shown below.
 ;; row and column names
 (defun org-babel-del-hlines (table)
   "Remove all 'hlines from TABLE."
-  (remove 'hline table))
+  (remq 'hline table))
 
 (defun org-babel-get-colnames (table)
   "Return the column names of TABLE.