Fix warning in oni-html
This commit is contained in:
parent
168bcf9c58
commit
b3a0345c7c
2 changed files with 7 additions and 7 deletions
|
@ -389,13 +389,6 @@ use. If MODE is not nil, open a new buffer with the name
|
|||
(interactive)
|
||||
(revert-buffer nil t nil))
|
||||
|
||||
(defun oni:replace-occurrences (from to)
|
||||
"Replace all occurrences of FROM with TO in the current buffer."
|
||||
(save-excursion
|
||||
(goto-char (point-min))
|
||||
(while (search-forward from nil t)
|
||||
(replace-match to))))
|
||||
|
||||
(defun oni:request-pull ()
|
||||
"Start a mail to request pulling from a git repository."
|
||||
(interactive)
|
||||
|
|
|
@ -31,6 +31,13 @@
|
|||
(oni:replace-occurrences "‘" "‘")
|
||||
(oni:replace-occurrences "ë" "ë"))
|
||||
|
||||
(defun oni:replace-occurrences (from to)
|
||||
"Replace all occurrences of FROM with TO in the current buffer."
|
||||
(save-excursion
|
||||
(goto-char (point-min))
|
||||
(while (search-forward from nil t)
|
||||
(replace-match to))))
|
||||
|
||||
;;;###autoload
|
||||
(defun oni:replace-html-special-chars-in-html-mode ()
|
||||
"Replace special characters with HTML escaped entities in HTML mode."
|
||||
|
|
Loading…
Reference in a new issue