[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemacs-commit] qemacs qe.h
From: |
Charlie Gordon |
Subject: |
[Qemacs-commit] qemacs qe.h |
Date: |
Wed, 16 Sep 2015 12:33:37 +0000 |
CVSROOT: /sources/qemacs
Module name: qemacs
Changes by: Charlie Gordon <chqrlie> 15/09/16 12:33:37
Modified files:
. : qe.h
Log message:
fix compilation warning: keyword order
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/qe.h?cvsroot=qemacs&r1=1.208&r2=1.209
Patches:
Index: qe.h
===================================================================
RCS file: /sources/qemacs/qemacs/qe.h,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -b -r1.208 -r1.209
--- qe.h 10 Sep 2015 00:25:23 -0000 1.208
+++ qe.h 16 Sep 2015 12:33:36 -0000 1.209
@@ -313,10 +313,10 @@
static inline int qe_tolower(int c) {
return (qe_inrange(c, 'A', 'Z') ? c + 'a' - 'A' : c);
}
-static int inline qe_findchar(const char *str, int c) {
+static inline int qe_findchar(const char *str, int c) {
return qe_inrange(c, 1, 255) && strchr(str, c) != NULL;
}
-static int inline qe_indexof(const char *str, int c) {
+static inline int qe_indexof(const char *str, int c) {
if (qe_inrange(c, 1, 255)) {
const char *p = strchr(str, c);
if (p) return p - str;
- [Qemacs-commit] qemacs qe.h,
Charlie Gordon <=