摘要: (defun count-words-region (beginning end) "Print number of words in the region." (interactive "r") (message "Counting words in region ... ") (save-excursion (let ((count 0)) (goto-char beginning) (while (and (< (point) end) (re-search-forward "\\w+\\W*" end 阅读全文
posted @ 2013-06-05 23:24 WendellYih 阅读(265) 评论(0) 推荐(0) 编辑