Mercurial > emacs
annotate nt/inc/pwd.h @ 45818:e70fd49212a0
(insert_1_both, insert_from_string_1)
(insert_from_buffer_1): Recalculate END_UNCHANGED in case the
insert happened in the end_unchanged region. Otherwise, the
redisplay may be confused and duplicate the last line in the
buffer [seen after save-buffer when require-final-newline==t].
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Thu, 13 Jun 2002 22:07:13 +0000 |
parents | 6df655ed941d |
children | 695cf19ef79e d7ddb3e565de |
rev | line source |
---|---|
11766 | 1 #ifndef _PWD_H_ |
2 #define _PWD_H_ | |
3 /* | |
4 * pwd.h doesn't exist on NT, so we put together our own. | |
5 */ | |
6 | |
7 struct passwd { | |
8 char *pw_name; | |
9 char *pw_passwd; | |
10 int pw_uid; | |
11 int pw_gid; | |
12 int pw_quota; | |
13 char *pw_gecos; | |
14 char *pw_dir; | |
15 char *pw_shell; | |
16 }; | |
17 | |
39823
6df655ed941d
(uid_t, gid_t): New typedefs.
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
18 typedef int uid_t; |
6df655ed941d
(uid_t, gid_t): New typedefs.
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
19 typedef uid_t gid_t; |
6df655ed941d
(uid_t, gid_t): New typedefs.
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
20 |
11766 | 21 #endif /* _PWD_H_ */ |