aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/array.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/array.el')
-rw-r--r--lisp/array.el5
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/array.el b/lisp/array.el
index 2fffe0197e8..965e97ff553 100644
--- a/lisp/array.el
+++ b/lisp/array.el
@@ -740,11 +740,6 @@ of `array-rows-numbered'."
740 ((> index limit) limit) 740 ((> index limit) limit)
741 (t index))) 741 (t index)))
742 742
743(defun xor (pred1 pred2)
744 "Return the logical exclusive or of predicates PRED1 and PRED2."
745 (and (or pred1 pred2)
746 (not (and pred1 pred2))))
747
748(defun current-line () 743(defun current-line ()
749 "Return the current buffer line at point. The first line is 0." 744 "Return the current buffer line at point. The first line is 0."
750 (count-lines (point-min) (line-beginning-position))) 745 (count-lines (point-min) (line-beginning-position)))