Fossil

Check-in [22806c5f59]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Re-do part of [d89b99e383], which was lost by [d7736649cd]
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 22806c5f59db5b418ab5c351d1d022856e197129
User & Date: jan.nijtmans 2012-08-27 19:05:44.971
Context
2012-08-27
21:09
Include branch information in the output of the finfo command. Patches from Peter Spjuth. check-in: 724bf68a2f user: drh tags: trunk
19:05
Re-do part of [d89b99e383], which was lost by [d7736649cd] check-in: 22806c5f59 user: jan.nijtmans tags: trunk
18:36
All the a=, b=, and c= query parameters of the timeline webpage to be tags and labels in addition to timestamps. check-in: 66f4fa9bd5 user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/shell.c.
60
61
62
63
64
65
66

67

68
69
70
71
72
73
74
# define stifle_history(X)
#endif

#if defined(_WIN32) || defined(WIN32)
# include <io.h>
#define isatty(h) _isatty(h)
#define access(f,m) _access((f),(m))

#define popen(a,b) _popen((a),(b))

#define pclose(x) _pclose(x)
#else
/* Make sure isatty() has a prototype.
*/
extern int isatty(int);
#endif








>

>







60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# define stifle_history(X)
#endif

#if defined(_WIN32) || defined(WIN32)
# include <io.h>
#define isatty(h) _isatty(h)
#define access(f,m) _access((f),(m))
#undef popen
#define popen(a,b) _popen((a),(b))
#undef pclose
#define pclose(x) _pclose(x)
#else
/* Make sure isatty() has a prototype.
*/
extern int isatty(int);
#endif