mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-21 14:53:44 +03:00
Stephane Bidoul pointed out another small glitch missing a const Daniel
* chvalid.c genChRanges.py: Stephane Bidoul pointed out another small glitch missing a const Daniel
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
Wed Oct 22 10:50:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* chvalid.c genChRanges.py: Stephane Bidoul pointed out another
|
||||||
|
small glitch missing a const
|
||||||
|
|
||||||
Wed Oct 22 10:43:21 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
Wed Oct 22 10:43:21 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* chvalid.c genChRanges.py: Stephane Bidoul pointed out that
|
* chvalid.c genChRanges.py: Stephane Bidoul pointed out that
|
||||||
|
@@ -162,7 +162,7 @@ xmlChRangeGroup xmlIsIdeographicGroup =
|
|||||||
* Returns: true if character valid, false otherwise
|
* Returns: true if character valid, false otherwise
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
xmlCharInRange (unsigned int val, xmlChRangeGroupPtr rptr) {
|
xmlCharInRange (unsigned int val, const xmlChRangeGroupPtr rptr) {
|
||||||
int low, high, mid;
|
int low, high, mid;
|
||||||
xmlChSRangePtr sptr;
|
xmlChSRangePtr sptr;
|
||||||
xmlChLRangePtr lptr;
|
xmlChLRangePtr lptr;
|
||||||
|
@@ -482,7 +482,7 @@ output.write(
|
|||||||
* Returns: true if character valid, false otherwise
|
* Returns: true if character valid, false otherwise
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
xmlCharInRange (unsigned int val, xmlChRangeGroupPtr rptr) {
|
xmlCharInRange (unsigned int val, const xmlChRangeGroupPtr rptr) {
|
||||||
int low, high, mid;
|
int low, high, mid;
|
||||||
xmlChSRangePtr sptr;
|
xmlChSRangePtr sptr;
|
||||||
xmlChLRangePtr lptr;
|
xmlChLRangePtr lptr;
|
||||||
|
Reference in New Issue
Block a user