mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
Make PRINT_* flags unique again
This commit is contained in:
parent
cedd1006e6
commit
65b3fdc4ab
2 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2000-06-13 Peter Stephenson <pws@cambridgesiliconradio.com>
|
||||
|
||||
* TBA: Src/zsh.h: make PRINT_ flags unique again.
|
||||
|
||||
2000-06-13 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* ?????: Completion/Core/_path_files, Src/Zle/complete.c,
|
||||
|
|
10
Src/zsh.h
10
Src/zsh.h
|
@ -1216,11 +1216,11 @@ struct nameddir {
|
|||
#define PRINT_INCLUDEVALUE (1<<4)
|
||||
|
||||
/* flags for printing for the whence builtin */
|
||||
#define PRINT_WHENCE_CSH (1<<4)
|
||||
#define PRINT_WHENCE_VERBOSE (1<<5)
|
||||
#define PRINT_WHENCE_SIMPLE (1<<6)
|
||||
#define PRINT_WHENCE_FUNCDEF (1<<7)
|
||||
#define PRINT_WHENCE_WORD (1<<8)
|
||||
#define PRINT_WHENCE_CSH (1<<5)
|
||||
#define PRINT_WHENCE_VERBOSE (1<<6)
|
||||
#define PRINT_WHENCE_SIMPLE (1<<7)
|
||||
#define PRINT_WHENCE_FUNCDEF (1<<9)
|
||||
#define PRINT_WHENCE_WORD (1<<10)
|
||||
|
||||
/***********************************/
|
||||
/* Definitions for history control */
|
||||
|
|
Loading…
Reference in a new issue