All public logs
Jump to navigation
Jump to search
Combined display of all available logs of 清冽之泉. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 00:12, 1 October 2025 Mwroot talk contribs created page 一个给法律条款文本前加两个全角空格的 Emacs 函数 (Created page with "<syntaxhighlight lang="elisp" line> ;;; insert-quan: 从当前行(行首)到 buffer 末尾,在需处理的行前插入两个全角空格(U+3000)。 (defun insert-quan () "从当前行(行首)到 buffer 末尾的每一行前插入两个全角空格(U+3000)。 跳过空白行、以 '='(在可选前导空白之后)开头的行,以及已以全角空格开头的行。" (interactive) (let* ((beg (line-beginning-position)) (end (point-max)...")