Stefan Monnier writes: >> * lisp/leim/quail/hangul.el >> * lisp/progmodes/cperl-mode.el: Use delete-char instead of >> delete-backward-char, fixes compilation warnings. > > The above doesn't use the right syntax. The right syntax looks like > > * (): blabla. > > IOW you need to add the function names. > Please re-read https://www.gnu.org/prep/standards/html_node/Style-of-Change-Logs.html#Style-of-Change-Logs > >> @@ -2588,7 +2588,7 @@ Will untabify if `cperl-electric-backspace-untabify' is non-nil." >> (delete-region (point) p)) >> (if cperl-electric-backspace-untabify >> (backward-delete-char-untabify arg) >> - (delete-backward-char arg))))) >> + (delete-char (- arg)))))) > > This doesn't look right: I think here we do want to run > delete-backward-char since this is part of a command which basically > extends the normal binding of DEL which is delete-backward-char. > Maybe we should call it interactively, tho. > > > Stefan Attached patch. Does this look good?