[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Bison ASCIIization fixes
From: |
Paul Eggert |
Subject: |
Bison ASCIIization fixes |
Date: |
24 Feb 2003 13:13:10 -0800 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) Emacs/20.3 |
While looking into something else I noticed that the Bison source code
contains some non-ASCII characters encoded as Latin-1. This doesn't
work well in environments that assume UTF-8 or ISO-2022, which are
both fairly common these days. I get more ISO-2022-JP email than I
get Latin-1 email, for example.
The simplest way to avoid the alphabet-soup hassles is to stick with
plain ASCII for now, so I installed these changes. I don't like
losing the accents on people's names, but there's a long tradition of
doing this so I guess we can continue with this tradition for a while
longer. If we'd like to standardize on a different encoding, I
suggest UTF-8; but this should probably wait until UTF-8 and Emacs get
along better.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/bison/bison/ChangeLog,v
retrieving revision 1.1006
diff -p -u -r1.1006 ChangeLog
--- ChangeLog 21 Feb 2003 08:13:37 -0000 1.1006
+++ ChangeLog 24 Feb 2003 21:04:47 -0000
@@ -24,7 +24,7 @@
and Doxygen'ed documentation of class Position.
(location.hh): Use it.
Document a` la Doxygen.
- With the help of Benoît Perrot.
+ With the help of Benoit Perrot.
2003-02-20 Akim Demaille <address@hidden>
@@ -6748,7 +6748,7 @@
* tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
its argument.
- Reported by Peter Hámorský.
+ Reported by Peter Hamorsky.
2001-12-05 Akim Demaille <address@hidden>
Index: THANKS
===================================================================
RCS file: /cvsroot/bison/bison/THANKS,v
retrieving revision 1.55
diff -p -u -r1.55 THANKS
--- THANKS 18 Nov 2002 09:33:22 -0000 1.55
+++ THANKS 24 Feb 2003 21:04:47 -0000
@@ -47,7 +47,7 @@ Pascal Bart address@hidden
Paul Eggert address@hidden
Paul Hilfinger address@hidden
Per Allansson address@hidden
-Peter Hámorský address@hidden
+Peter Hamorsky address@hidden
Piotr Gackiewicz address@hidden
Quoc Peyrot address@hidden
R Blake address@hidden
Index: TODO
===================================================================
RCS file: /cvsroot/bison/bison/TODO,v
retrieving revision 1.87
diff -p -u -r1.87 TODO
--- TODO 7 Nov 2002 13:57:01 -0000 1.87
+++ TODO 24 Feb 2003 21:04:47 -0000
@@ -161,7 +161,7 @@ There are a couple of proposed outputs:
which is based on Bison.
<http://www.goice.co.jp/member/mo/hack-progs/bison-java.html>
-Sébastien Serrurier (address@hidden) is working on this: he is
+Sebastien Serrurier (address@hidden) is working on this: he is
expected to contact the authors, design the output, and implement it
into Bison.
@@ -324,7 +324,7 @@ the parser with a means to create the (v
-----
-Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Bison.
Index: data/m4sugar/m4sugar.m4
===================================================================
RCS file: /cvsroot/bison/bison/data/m4sugar/m4sugar.m4,v
retrieving revision 1.5
diff -p -u -r1.5 m4sugar.m4
--- data/m4sugar/m4sugar.m4 26 Dec 2002 08:28:09 -0000 1.5
+++ data/m4sugar/m4sugar.m4 24 Feb 2003 21:04:47 -0000
@@ -2,7 +2,7 @@ divert(-1)#
# This file is part of Autoconf.
# Base M4 layer.
# Requires GNU M4.
-# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+# Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -844,7 +844,7 @@ m4_define([m4_undivert],
# m4_require'd.
#
# The implementation is based on two ideas, (i) using diversions to
-# prepare the expansion of the macro and its dependencies (by François
+# prepare the expansion of the macro and its dependencies (by Franc,ois
# Pinard), and (ii) expand the most recently m4_require'd macros _after_
# the previous macros (by Axel Thimm).
#
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Bison ASCIIization fixes,
Paul Eggert <=