瀏覽代碼

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

* lisp/ob-core.el (org-babel-del-hlines): Use `remq' for `remove'
Aaron Ecay 11 年之前
父節點
當前提交
c7dff7105b
共有 1 個文件被更改,包括 1 次插入1 次删除
  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.