emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/oldXMenu/Error.c [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/oldXMenu/Error.c [lexbind]
Date: Tue, 14 Oct 2003 18:56:42 -0400

Index: emacs/oldXMenu/Error.c
diff -c /dev/null emacs/oldXMenu/Error.c:1.1.18.1
*** /dev/null   Tue Oct 14 18:56:42 2003
--- emacs/oldXMenu/Error.c      Tue Oct 14 18:56:27 2003
***************
*** 0 ****
--- 1,32 ----
+ #include "copyright.h"
+ 
+ /* $Header: /cvsroot/emacs/emacs/oldXMenu/Error.c,v 1.1.18.1 2003/10/14 
22:56:27 miles Exp $ */
+ /* Copyright    Massachusetts Institute of Technology    1985 */
+ 
+ /*
+  * XMenu:     MIT Project Athena, X Window system menu package
+  *
+  *    XMenuError -    Returns a string description of the current
+  *                    XMenu error status flag.
+  *
+  *    Author:         Tony Della Fera, DEC
+  *                    August, 1985
+  *
+  */
+ 
+ #include "XMenuInt.h"
+ 
+ char *
+ XMenuError()
+ {
+     static char message[128];         /* Error message buffer. */
+ 
+     if ((_XMErrorCode < XME_CODE_COUNT) && (_XMErrorCode >= 0)) {
+       return(_XMErrorList[_XMErrorCode]);
+     }
+     sprintf(message, "Unknown _XMErrorCode: %d", _XMErrorCode);
+     return(message);
+ }
+ 
+ /* arch-tag: 5fff4a23-40ca-40d0-8887-c50fc73dea9d
+    (do not change this comment) */




reply via email to

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