From 761582529e1b17e025bf2bd45109afe8b14202a7 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 26 Jan 2012 12:00:02 -0500 Subject: [PATCH] Add ® and ™ to fix-nonstandard-chars.el. --- fix-nonstandard-chars.el | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/fix-nonstandard-chars.el b/fix-nonstandard-chars.el index 2f558cb..e1ec2f5 100644 --- a/fix-nonstandard-chars.el +++ b/fix-nonstandard-chars.el @@ -4,12 +4,17 @@ (interactive "p") - (setq replacements '( ("’" "'") - ("“" "“") - ("”" "”") - ("–" "-") - ("—" "—") - ("°" "°") )) + (setq replacements + '( ("’" "'") + ("“" "“") + ("”" "”") + ("–" "-") + ("—" "—") + ("°" "°") + ("®" "®") + ("™" "™") + ) + ) (dolist (replacement replacements nil) ;; The mark gets all fucked up here. It's easiest to -- 2.43.2