View | Details | Raw Unified | Return to bug 89478
Collapse All | Expand All

(-)xemacs-devel-mule/Makefile (+1 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	xemacs-devel-mule
8
PORTNAME=	xemacs-devel-mule
9
PORTVERSION=	${XEMACS_VER:S/-/./}
9
PORTVERSION=	${XEMACS_VER:S/-/./}
10
PORTREVISION=	1
10
CATEGORIES+=	editors
11
CATEGORIES+=	editors
11
MASTER_SITES=	${MASTER_SITE_XEMACS}
12
MASTER_SITES=	${MASTER_SITE_XEMACS}
12
MASTER_SITE_SUBDIR=	xemacs-${XEMACS_REL}
13
MASTER_SITE_SUBDIR=	xemacs-${XEMACS_REL}
(-)xemacs-devel-mule/files/patch-mule-coding.c (+23 lines)
Line 0 Link Here
1
Index: src/mule-coding.c
2
===================================================================
3
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/mule-coding.c,v
4
retrieving revision 1.35
5
retrieving revision 1.36
6
diff -u -r1.35 -r1.36
7
--- src/mule-coding.c	2005/06/19 21:08:31	1.35
8
+++ src/mule-coding.c	2005/11/22 07:19:32	1.36
9
@@ -2643,10 +2643,10 @@
10
 	write_c_string (printcharfun, "(force)");
11
     }
12
 
13
-#define FROB(prop)					\
14
-  if (!NILP (iso2022_getprop (cs, prop)))		\
15
-    {							\
16
-      write_fmt_string (printcharfun, ", %s", prop);	\
17
+#define FROB(prop)					        \
18
+  if (!NILP (iso2022_getprop (cs, prop)))		        \
19
+    {						                \
20
+      write_fmt_string_lisp (printcharfun, ", %s", 1, prop);	\
21
     }
22
   
23
   FROB (Qshort);
(-)xemacs-devel-mule/files/patch-window.c (+24 lines)
Line 0 Link Here
1
Index: src/window.c
2
===================================================================
3
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/window.c,v
4
retrieving revision 1.88
5
retrieving revision 1.89
6
diff -u -r1.88 -r1.89
7
--- src/window.c	2005/10/25 11:16:30	1.88
8
+++ src/window.c	2005/11/18 12:23:57	1.89
9
@@ -4314,7 +4314,14 @@
10
       if (NILP (parent))
11
 	{
12
 	  if (widthflag)
13
-	    invalid_operation ("No other window to side of this one", Qunbound);
14
+	    {
15
+	      int new_pixsize;
16
+	      sizep = &CURSIZE (w);
17
+	      dim = CURCHARSIZE (w);
18
+	      new_pixsize = inpixels?(*sizep + delta):(dim+delta);
19
+	      set_window_pixsize (window, new_pixsize, 0, 0);
20
+	      return;
21
+	    }
22
 	  break;
23
 	}
24
       if (widthflag

Return to bug 89478