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:
Aaron Ecay 2014-04-22 15:01:27 -04:00
parent ef5900641c
commit c7dff7105b
1 changed files with 1 additions and 1 deletions

View File

@ -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.