mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-11 23:31:43 -05:00
17 lines
299 B
C
17 lines
299 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_LONG "\xC2\xB5""EMACS" /* utf8 µEMACS */
|
|
|
|
#define VERSION "4.1.1"
|
|
|
|
#endif /* VERSION_H_ */
|