summaryrefslogtreecommitdiff
path: root/firefox-1.5-bullet-bill.patch
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2006-10-04 18:01:39 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2006-10-04 18:01:39 +0000
commitbef802580ec679e724f429081edc696d1303e90c (patch)
tree4b1d75a5bda586a353ccf0e2b8f8c07ae81f5115 /firefox-1.5-bullet-bill.patch
parent- Fix crash when changing gtk key theme (diff)
downloadlibrewolf-fedora-ff-bef802580ec679e724f429081edc696d1303e90c.tar.gz
librewolf-fedora-ff-bef802580ec679e724f429081edc696d1303e90c.tar.bz2
librewolf-fedora-ff-bef802580ec679e724f429081edc696d1303e90c.zip
- Bring the invisible character to parity with GTK+
Diffstat (limited to 'firefox-1.5-bullet-bill.patch')
-rw-r--r--firefox-1.5-bullet-bill.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/firefox-1.5-bullet-bill.patch b/firefox-1.5-bullet-bill.patch
new file mode 100644
index 0000000..7108eb4
--- /dev/null
+++ b/firefox-1.5-bullet-bill.patch
@@ -0,0 +1,23 @@
+Index: mozilla/editor/libeditor/text/nsTextEditRules.cpp
+===================================================================
+RCS file: /cvsroot/mozilla/editor/libeditor/text/nsTextEditRules.cpp,v
+retrieving revision 1.195
+diff -d -u -p -r1.195 nsTextEditRules.cpp
+--- mozilla/editor/libeditor/text/nsTextEditRules.cpp 16 Jun 2005 13:10:56 -0000 1.195
++++ mozilla/editor/libeditor/text/nsTextEditRules.cpp 4 Oct 2006 16:02:19 -0000
+@@ -1390,13 +1390,13 @@ nsTextEditRules::EchoInsertionToPWBuff(P
+ // manage the password buffer
+ mPasswordText.Insert(*aOutString, aStart);
+
+- // change the output to '*' only
++ // change the output to 'U+2022' only
+ PRInt32 length = aOutString->Length();
+ PRInt32 i;
+ aOutString->Truncate();
+ for (i=0; i<length; i++)
+ {
+- aOutString->Append(PRUnichar('*'));
++ aOutString->Append(PRUnichar(0x2022));
+ }
+
+ return NS_OK;
bgstack15