]> granicus.if.org Git - fribidi/commitdiff
Nothing really important.
authorbehdad <behdad>
Tue, 27 Apr 2004 23:53:43 +0000 (23:53 +0000)
committerbehdad <behdad>
Tue, 27 Apr 2004 23:53:43 +0000 (23:53 +0000)
doc/Makefile.am
lib/common.h
lib/fribidi-mirroring.c

index 41b46d2b331517ec9ea89fe2205f650194354714..c91268ccb62ed6c082fc0a8525bdf9475d996a47 100644 (file)
@@ -34,7 +34,6 @@ man3 = $(dist_man_MANS) $(dist_noinst_MANS)
 MAINTAINERCLEANFILES = $(man3)
 
 C2MANFLAGS = $(includepath) -DDONT_HAVE_FRIBIDI_CONFIG_H -M "$(PACKAGE_NAME)"
-VPATH += $(includevpath)
 
 c2man.stamp: $(headers)
        @$(RM) $@.tmp
index 8e3e428b2bba1e418f1b57cbaf403e7508b13f5b..0a6a74560d7c3fbbc8d19f843abc87574481dd61 100644 (file)
@@ -1,10 +1,10 @@
 /* FriBidi
  * common.h - common include for library sources
  *
- * $Id: common.h,v 1.2 2004-04-27 16:47:22 behdad Exp $
+ * $Id: common.h,v 1.3 2004-04-27 23:53:43 behdad Exp $
  * $Author: behdad $
- * $Date: 2004-04-27 16:47:22 $
- * $Revision: 1.2 $
+ * $Date: 2004-04-27 23:53:43 $
+ * $Revision: 1.3 $
  * $Source: /home/behdad/src/fdo/fribidi/togit/git/../fribidi/fribidi2/lib/common.h,v $
  *
  * Author:
@@ -44,7 +44,7 @@
 
 #ifndef FALSE
 # define FALSE (0==1)
-#endif /* !FRIBIDI_FALSE */
+#endif /* !FALSE */
 
 #ifndef TRUE
 # define TRUE (!FALSE)
index 95cc4a2b148062802b2b9042adf85dd04d864743..18b77c5a48104ed339b78fbb078bd8fd4f9deb7a 100644 (file)
  * 
  * For licensing issues, contact <license@farsiweb.info>.
  */
-/* $Id: fribidi-mirroring.c,v 1.2 2004-04-27 15:23:25 behdad Exp $
+/* $Id: fribidi-mirroring.c,v 1.3 2004-04-27 23:53:43 behdad Exp $
  * $Author: behdad $
- * $Date: 2004-04-27 15:23:25 $
- * $Revision: 1.2 $
+ * $Date: 2004-04-27 23:53:43 $
+ * $Revision: 1.3 $
  * $Source: /home/behdad/src/fdo/fribidi/togit/git/../fribidi/fribidi2/lib/fribidi-mirroring.c,v $
  *
  * Authors:
@@ -47,7 +47,8 @@ fribidi_get_mirror_char (
   FriBidiChar *mirrored_ch
 )
 {
-  int pos, step;
+  register int pos;
+  int step;
   fribidi_boolean found;
 
   pos = step = (nFriBidiMirroredChars / 2) + 1;
@@ -73,6 +74,7 @@ fribidi_get_mirror_char (
        break;
     }
   found = FriBidiMirroredChars[pos].ch == ch;
+
   if (mirrored_ch)
     *mirrored_ch = found ? FriBidiMirroredChars[pos].mirrored_ch : ch;