Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5b9c0a1d
Commit
5b9c0a1d
authored
Apr 20, 2005
by
Thien-Thi Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove reference to defunct vms-pwd.h.
For pwd.h, use HAVE_PWD_H, not !VMS.
parent
c791cb54
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
16 deletions
+8
-16
src/dired.c
src/dired.c
+3
-3
src/editfns.c
src/editfns.c
+1
-3
src/fileio.c
src/fileio.c
+1
-3
src/filelock.c
src/filelock.c
+2
-4
src/xrdb.c
src/xrdb.c
+1
-3
No files found.
src/dired.c
View file @
5b9c0a1d
...
...
@@ -26,10 +26,10 @@ Boston, MA 02111-1307, USA. */
#include <sys/types.h>
#include <sys/stat.h>
#ifdef VMS
#include "vms-pwd.h"
#else
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
#ifndef VMS
#include <grp.h>
#endif
...
...
src/editfns.c
View file @
5b9c0a1d
...
...
@@ -24,9 +24,7 @@ Boston, MA 02111-1307, USA. */
#include <sys/types.h>
#include <stdio.h>
#ifdef VMS
#include "vms-pwd.h"
#else
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
...
...
src/fileio.c
View file @
5b9c0a1d
...
...
@@ -45,9 +45,7 @@ Boston, MA 02111-1307, USA. */
# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
#endif
#ifdef VMS
#include "vms-pwd.h"
#else
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
...
...
src/filelock.c
View file @
5b9c0a1d
...
...
@@ -26,11 +26,9 @@ Boston, MA 02111-1307, USA. */
#include <signal.h>
#include <stdio.h>
#ifdef VMS
#include "vms-pwd.h"
#else
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
/* not VMS */
#endif
#include <sys/file.h>
#ifdef HAVE_FCNTL_H
...
...
src/xrdb.c
View file @
5b9c0a1d
...
...
@@ -53,9 +53,7 @@ Boston, MA 02111-1307, USA. */
#include <X11/X.h>
#include <X11/Xutil.h>
#include <X11/Xresource.h>
#ifdef VMS
#include "vms-pwd.h"
#else
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
#include <sys/stat.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment