1
Fork 0
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:
David Reitter 2016-06-11 11:58:20 +10:00
parent b4788b9394
commit eacdc9eb6c

View file

@ -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