1
1
Этот коммит содержится в:
Enrico Weigelt, metux IT service 2009-02-04 01:08:29 +01:00
родитель 8e2f229c38
Коммит 1d8ef0b089
3 изменённых файлов: 5 добавлений и 14 удалений

Просмотреть файл

@ -1,3 +1,7 @@
2009-02-04 Enrico Weigelt, metux ITS <weigelt@metux.de>
* mhl/types.h, mhl/escape.h: replaced bool type by stdbool.h (fixing #240)
2009-02-03 Enrico Weigelt, metux ITS <weigelt@metux.de> 2009-02-03 Enrico Weigelt, metux ITS <weigelt@metux.de>
* lib/mc.lib: added patch on #219 by angel_il * lib/mc.lib: added patch on #219 by angel_il
@ -18,9 +22,6 @@
* src/find.c, src/main.c, src/panelize.c, src/util.c, src/utilunix.c, * src/find.c, src/main.c, src/panelize.c, src/util.c, src/utilunix.c,
* src/widget.c, src/widget.h, src/wtools.c, vfs/fish.c: * src/widget.c, src/widget.h, src/wtools.c, vfs/fish.c:
fixed shell escaping issues in commandline completion engine fixed shell escaping issues in commandline completion engine
2009-01-31 Enrico Weigelt, metux ITS <weigelt@metux.de>
* replaced buggy concat_dir_and_file() by mhl_str_dir_plus_file() (in mhl/string.h) * replaced buggy concat_dir_and_file() by mhl_str_dir_plus_file() (in mhl/string.h)
2009-01-30 Enrico Weigelt, metux ITS <weigelt@metux.de> 2009-01-30 Enrico Weigelt, metux ITS <weigelt@metux.de>
@ -42,9 +43,6 @@
* mhl/escape.h, src/complete.c, vfs/fish.c: introduced new type * mhl/escape.h, src/complete.c, vfs/fish.c: introduced new type
SHELL_ESCAPED_STR for more type safety SHELL_ESCAPED_STR for more type safety
2009-01-27 Enrico Weigelt, metux IT service <weigelt@metux.de>
* mhl/escape.h, mhl/string.h: fixed comments to use /* ... */ * mhl/escape.h, mhl/string.h: fixed comments to use /* ... */
2009-01-27 Sergei Trofimovich <slyfox@inbox.ru> 2009-01-27 Sergei Trofimovich <slyfox@inbox.ru>

Просмотреть файл

@ -5,8 +5,7 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdbool.h>
#include <mhl/types.h>
#define mhl_shell_escape_toesc(x) \ #define mhl_shell_escape_toesc(x) \
(((x)==' ')||((x)=='!')||((x)=='#')||((x)=='$')||((x)=='%')|| \ (((x)==' ')||((x)=='!')||((x)=='#')||((x)=='$')||((x)=='%')|| \

Просмотреть файл

@ -7,10 +7,4 @@
#ifndef __MHL_TYPES_H #ifndef __MHL_TYPES_H
#define __MHL_TYPES_H #define __MHL_TYPES_H
typedef enum
{
false = 0,
true = 1
} bool;
#endif #endif