mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-27 07:37:25 +00:00
ob-core.el: Replace a use of remove with remq
* lisp/ob-core.el (org-babel-del-hlines): Use `remq' for `remove'
This commit is contained in:
parent
ef5900641c
commit
c7dff7105b
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user