mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-18 02:26:06 -05:00
Renaud Fivet
e13bc9ca7e
Consistent display of µEMACS as program name among - ue --version - on status bar - insert-string $progname - write-message $progname (FIX).
18 lines
331 B
C
18 lines
331 B
C
#ifndef VERSION_H_
|
|
#define VERSION_H_
|
|
|
|
#ifdef PROGRAM
|
|
# define _QUOTE( s) #s
|
|
# define QUOTE( s) _QUOTE( s)
|
|
# define PROGRAM_NAME QUOTE(PROGRAM)
|
|
#else
|
|
# define PROGRAM_NAME "em"
|
|
#endif
|
|
|
|
# define PROGRAM_NAME_PFX "\xC2"
|
|
# define PROGRAM_NAME_LONG "\xB5""EMACS" /* UTF-8 µEMACS */
|
|
|
|
# define VERSION "4.2.0"
|
|
|
|
#endif /* VERSION_H_ */
|