I am having trouble with the marker in calling an align-regexp
. Somehow this doesn't work and gives the error "Marker does not point anywhere
".
The idea of the function is that it searches for a new paragraph, marks it and then performs the align-regexp on it. Why doesn't it work?
(defun cleanR-align-smallerthan-dash ()
(interactive)
(save-excursion
(goto-char (point-min))
(while (search-forward-regexp "[
][
]" nil t) ; confirmed to work
(mark-paragraph) ; the error is probably in here
(align-regexp (region-beginning) (region-end) "<-"))))
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…