mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Prevent compiler warning for unused arguments
* lisp/international/ucs-normalize.el (ucs-normalize-hfs-nfd-pre-write-conversion): Prevent compiler warning for unused arguments, add coment.
This commit is contained in:
parent
b4788b9394
commit
eacdc9eb6c
1 changed files with 2 additions and 1 deletions
|
|
@ -613,7 +613,8 @@ COMPOSITION-PREDICATE will be used to compose region."
|
|||
(- (point-max) (point-min)))))
|
||||
|
||||
;; Pre-write conversion for `utf-8-hfs'.
|
||||
(defun ucs-normalize-hfs-nfd-pre-write-conversion (from to)
|
||||
;; _from and _to are legacy arguments (see `define-coding-system').
|
||||
(defun ucs-normalize-hfs-nfd-pre-write-conversion (_from _to)
|
||||
(ucs-normalize-HFS-NFD-region (point-min) (point-max)))
|
||||
|
||||
;;; coding-system definition
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue