diff options
| author | Pavel Janík | 2001-10-08 05:55:48 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-10-08 05:55:48 +0000 |
| commit | 5f351ff1f52efddc8033305f8c6ddb0dd675dbd9 (patch) | |
| tree | 677a82e5e00645418962575963b7f4ab80ba4de6 /src | |
| parent | 479dfe879f675d9ff4cca346015403a5737b5d2a (diff) | |
| download | emacs-5f351ff1f52efddc8033305f8c6ddb0dd675dbd9.tar.gz emacs-5f351ff1f52efddc8033305f8c6ddb0dd675dbd9.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/Makefile.in | 2 | ||||
| -rw-r--r-- | src/README | 3 | ||||
| -rw-r--r-- | src/atimer.c | 2 | ||||
| -rw-r--r-- | src/atimer.h | 4 |
5 files changed, 8 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 495a43ad89c..b9cfcabde29 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2001-10-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 1 | 2001-10-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 2 | ||
| 3 | * xfns.c (Fx_hide_tip): Fix typo in a doc string. | ||
| 4 | (Fx_file_dialog) [USE_MOTIF]: Remove unused variables | ||
| 5 | `popup_activated_flag' and `title'. | ||
| 6 | |||
| 3 | * doc.c (Fdocumentation_property): Fix typo in a doc string. | 7 | * doc.c (Fdocumentation_property): Fix typo in a doc string. |
| 4 | 8 | ||
| 5 | * emacs.c (main): Remove extra `;'. | 9 | * emacs.c (main): Remove extra `;'. |
diff --git a/src/Makefile.in b/src/Makefile.in index c041cae37f8..b20ec7d0add 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | # script may need modifying in sync with changes made here. Try to | 24 | # script may need modifying in sync with changes made here. Try to |
| 25 | # avoid shell-ism because the DOS build has to use the DOS shell. | 25 | # avoid shell-ism because the DOS build has to use the DOS shell. |
| 26 | 26 | ||
| 27 | # Don't try to replace the ccp processing using autoconf facilities, | 27 | # Don't try to replace the cpp processing using autoconf facilities, |
| 28 | # says rms. | 28 | # says rms. |
| 29 | 29 | ||
| 30 | # Here are the things that we expect ../configure to edit. | 30 | # Here are the things that we expect ../configure to edit. |
diff --git a/src/README b/src/README index 60705cef318..87b3ed7e1ad 100644 --- a/src/README +++ b/src/README | |||
| @@ -26,6 +26,3 @@ systems where you are not overly concerned with security, since it | |||
| 26 | either requires that you install Emacs with SYSPRV or make SYSUAF.DAT | 26 | either requires that you install Emacs with SYSPRV or make SYSUAF.DAT |
| 27 | world readable. Otherwise, Emacs can determine information about the | 27 | world readable. Otherwise, Emacs can determine information about the |
| 28 | current user, but no one else. | 28 | current user, but no one else. |
| 29 | |||
| 30 | `pwd.h' contains definitions for VMS to be able to correctly simulate | ||
| 31 | `getpwdnam' and `getpwduid'. | ||
diff --git a/src/atimer.c b/src/atimer.c index 54a038fd549..d2e2bc7b890 100644 --- a/src/atimer.c +++ b/src/atimer.c | |||
| @@ -62,7 +62,7 @@ static struct atimer *atimers; | |||
| 62 | 62 | ||
| 63 | int pending_atimers; | 63 | int pending_atimers; |
| 64 | 64 | ||
| 65 | /* Block/unblock SIGALRM.. */ | 65 | /* Block/unblock SIGALRM. */ |
| 66 | 66 | ||
| 67 | #define BLOCK_ATIMERS sigblock (sigmask (SIGALRM)) | 67 | #define BLOCK_ATIMERS sigblock (sigmask (SIGALRM)) |
| 68 | #define UNBLOCK_ATIMERS sigunblock (sigmask (SIGALRM)) | 68 | #define UNBLOCK_ATIMERS sigunblock (sigmask (SIGALRM)) |
diff --git a/src/atimer.h b/src/atimer.h index 3ee73a650cd..7c1fb0544c6 100644 --- a/src/atimer.h +++ b/src/atimer.h | |||
| @@ -58,8 +58,8 @@ struct atimer | |||
| 58 | /* Interval of this timer. */ | 58 | /* Interval of this timer. */ |
| 59 | EMACS_TIME interval; | 59 | EMACS_TIME interval; |
| 60 | 60 | ||
| 61 | /* Function to call when timer is ripe. Interupt input is | 61 | /* Function to call when timer is ripe. Interrupt input is |
| 62 | garanteed to not be blocked when this function is called. */ | 62 | guaranteed to not be blocked when this function is called. */ |
| 63 | atimer_callback fn; | 63 | atimer_callback fn; |
| 64 | 64 | ||
| 65 | /* Additional user-specified data to pass to FN. */ | 65 | /* Additional user-specified data to pass to FN. */ |