view oldXMenu/Error.c @ 106279:28d604d72acd

* os.texi (Startup Summary): vindex inhibit-startup-message and inhibit-splash-screen. (Command-Line Arguments): vindex argv. (Suspending Emacs): vindex suspend-tty-functions and resume-tty-functions. Don't want to index every hook, but having the programming ones is helpful.
author Kevin Ryde <user42@zip.com.au>
date Thu, 26 Nov 2009 23:58:23 +0000
parents fec5e03aaf59
children edf631bdbb7a ec58e5c426ef 5cc91198ffb2
line wrap: on
line source

/* Copyright    Massachusetts Institute of Technology    1985	*/

#include "copyright.h"


/*
 * 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) */