summary refs log tree commit diff stats
path: root/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
* Next version will run on pure Lisp Machines only v1.4.2hut2011-03-051-0/+5
|
* If ranger won't run, you still got peanut butter to live for. v1.4.1hut2011-01-041-0/+4
|
* We are not authorized to disclose the commit message v1.4.0hut2010-12-221-3/+20
|
* HOW DO I TURN OFF CAPS LOCK? v1.2.3hut2010-12-131-0/+7
|
* Tea, Earl Grey, Hot. v1.2.2hut2010-10-101-8/+16
|
* CHANGELOG updatedhut2010-09-161-0/+3
|
* Beware of low-flying butterflies v1.2.0hut2010-09-131-0/+18
|
* Why did the astrophysicist order three hamburgers? v1.1.2hut2010-07-121-0/+6
|
* version = version + 1 v1.1.1hut2010-06-181-0/+1
|
* added CHANGELOGhut2010-06-181-0/+21
Dickey <dickey@invisible-island.net> 1996-09-02 19:39:24 -0400 snapshot of project "lynx", label v2_6' href='/ingrix/lynx-snapshots/commit/src/LYLocal.h?id=e087f6d44e87f489fcb3056e86319ebba4218156'>e087f6d4
e087f6d4




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67






                    






















                                                                      
                                
 


                              



                                                                                     

                                                              







                                                          
                                                  
  
                                                 
                                           

                                                                   



                                              
#ifndef LYLOCAL_H
#define LYLOCAL_H

#ifdef DIRED_SUPPORT

#ifdef VMS
#include <types.h>
#include <stat.h>
#endif /* VMS */

#ifndef S_IRWXU 
#define S_IRWXU         0000700 /* rwx, owner */
#define         S_IRUSR 0000400 /* read permission, owner */
#define         S_IWUSR 0000200 /* write permission, owner */
#define         S_IXUSR 0000100 /* execute/search permission, owner */
#define S_IRWXG         0000070 /* rwx, group */
#define         S_IRGRP 0000040 /* read permission, group */
#define         S_IWGRP 0000020 /* write permission, grougroup */
#define         S_IXGRP 0000010 /* execute/search permission, group */
#define S_IRWXO         0000007 /* rwx, other */
#define         S_IROTH 0000004 /* read permission, other */
#define         S_IWOTH 0000002 /* write permission, other */
#define         S_IXOTH 0000001 /* execute/search permission, other */
#endif /* !S_IRWXU  */

#ifndef S_ISUID                 /* Unusual modes */
#define S_ISUID         0x800   /* set user id on execution */
#define S_ISGID         0x400   /* set group id on execution */
#define S_ISVTX         0x200   /* save swapped text even after use */
#endif /* !S_ISUID */

/* Special return code for LYMainLoop.c */
#define PERMIT_FORM_RESULT (-99)

extern char LYPermitFileURL[];
extern char LYDiredFileURL[];
extern char LYUploadFileURL[];

extern BOOLEAN local_create PARAMS((document *doc));
extern BOOLEAN local_modify PARAMS((document *doc, char **newpath));
extern BOOLEAN local_remove PARAMS((document *doc));
extern BOOLEAN local_install PARAMS((char *destpath, char *srcpath, char **newpath));

/* MainLoop needs to know about this one for atexit cleanup */
extern void clear_tags NOPARAMS;

/* Define the PRIVATE routines in case they ever go PUBLIC

extern BOOLEAN modify_name PARAMS((char *testpath));
extern BOOLEAN modify_location PARAMS((char *testpath));
extern BOOLEAN create_file PARAMS((char *testpath));
extern BOOLEAN create_directory PARAMS((char *testpath));
extern BOOLEAN modify_tagged PARAMS((char *testpath));
extern BOOLEAN remove_tagged NOPARAMS;
extern BOOLEAN remove_single PARAMS ((char *testpath));
extern BOOLEAN is_a_file PARAMS((char *testname));
*/
extern void tagflag PARAMS((int flag, int cur)); 
extern void showtags PARAMS((HTList *tag));
extern int local_dired PARAMS((document *doc));
extern int dired_options PARAMS ((document *doc, char ** newfile));

extern void add_menu_item PARAMS((char *str));

#endif /* DIRED_SUPPORT */

#endif /* LYLOCAL_H */