emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/xterm.c


From: Dan Nicolaescu
Subject: [Emacs-diffs] Changes to emacs/src/xterm.c
Date: Fri, 30 Sep 2005 18:38:31 -0400

Index: emacs/src/xterm.c
diff -c emacs/src/xterm.c:1.875 emacs/src/xterm.c:1.876
*** emacs/src/xterm.c:1.875     Tue Sep 27 21:14:23 2005
--- emacs/src/xterm.c   Fri Sep 30 22:38:13 2005
***************
*** 6231,6237 ****
                if (status_return == XBufferOverflow)
                  {
                    copy_bufsiz = nbytes + 1;
!                   copy_bufptr = (char *) alloca (copy_bufsiz);
                    nbytes = XmbLookupString (FRAME_XIC (f),
                                              &event.xkey, copy_bufptr,
                                              copy_bufsiz, &keysym,
--- 6231,6237 ----
                if (status_return == XBufferOverflow)
                  {
                    copy_bufsiz = nbytes + 1;
!                   copy_bufptr = (unsigned char *) alloca (copy_bufsiz);
                    nbytes = XmbLookupString (FRAME_XIC (f),
                                              &event.xkey, copy_bufptr,
                                              copy_bufsiz, &keysym,
***************
*** 6249,6255 ****
                    if (status_return == XBufferOverflow)
                      {
                        copy_bufsiz = nbytes + 1;
!                       copy_bufptr = (char *) alloca (copy_bufsiz);
                        nbytes = Xutf8LookupString (FRAME_XIC (f),
                                                    &event.xkey,
                                                    copy_bufptr,
--- 6249,6255 ----
                    if (status_return == XBufferOverflow)
                      {
                        copy_bufsiz = nbytes + 1;
!                       copy_bufptr = (unsigned char *) alloca (copy_bufsiz);
                        nbytes = Xutf8LookupString (FRAME_XIC (f),
                                                    &event.xkey,
                                                    copy_bufptr,




reply via email to

[Prev in Thread] Current Thread [Next in Thread]