Paul Nathan
Paul Nathan

Reputation: 40309

Elisp function returning mark instead of the right value

I'm writing a routine to test to see if point is at the practical end of line.

(defun end-of-line-p ()
  "T if there is only \w* between point and end of line" 
  (interactive)
  (save-excursion
    (set-mark-command nil)      ;mark where we are
    (move-end-of-line nil)      ;move to the end of the line
    (let ((str (buffer-substring (mark) (point))))    ;; does any non-ws text exist in the region? return false
      (if (string-match-p "\W*" str)
      t
    nil))))

The problem is, when running it, I see "mark set" in the minibuffer window, instead of T or nil.

Upvotes: 4

Views: 316

Answers (2)

PP.
PP.

Reputation: 10864

There is a built-in function called eolp. (edit: but this wasn't what you were trying to achieve, was it..)

Here is my version of the function (although you will have to test it more thoroughly than I did):


(defun end-of-line-p ()
  "true if there is only [ \t] between point and end of line"
  (interactive)
  (let (
        (point-initial (point)) ; save point for returning
        (result t)
        )
    (move-end-of-line nil) ; move point to end of line
    (skip-chars-backward " \t" (point-min)) ; skip backwards over whitespace
    (if (> (point) point-initial)
        (setq result nil)
      )
    (goto-char point-initial) ; restore where we were
    result
    )
  )

Upvotes: 1

huaiyuan
huaiyuan

Reputation: 26529

(looking-at-p "\\s-*$")

Upvotes: 8

Related Questions