Mercurial > emacs
changeset 39667:7ca787d18982
*** empty log message ***
author | Pavel Janík <Pavel@Janik.cz> |
---|---|
date | Mon, 08 Oct 2001 05:55:48 +0000 |
parents | 837dc2492c5d |
children | 1666965880cc |
files | src/ChangeLog src/Makefile.in src/README src/atimer.c src/atimer.h |
diffstat | 5 files changed, 8 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Mon Oct 08 05:48:56 2001 +0000 +++ b/src/ChangeLog Mon Oct 08 05:55:48 2001 +0000 @@ -1,5 +1,9 @@ 2001-10-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> + * xfns.c (Fx_hide_tip): Fix typo in a doc string. + (Fx_file_dialog) [USE_MOTIF]: Remove unused variables + `popup_activated_flag' and `title'. + * doc.c (Fdocumentation_property): Fix typo in a doc string. * emacs.c (main): Remove extra `;'.
--- a/src/Makefile.in Mon Oct 08 05:48:56 2001 +0000 +++ b/src/Makefile.in Mon Oct 08 05:55:48 2001 +0000 @@ -24,7 +24,7 @@ # script may need modifying in sync with changes made here. Try to # avoid shell-ism because the DOS build has to use the DOS shell. -# Don't try to replace the ccp processing using autoconf facilities, +# Don't try to replace the cpp processing using autoconf facilities, # says rms. # Here are the things that we expect ../configure to edit.
--- a/src/README Mon Oct 08 05:48:56 2001 +0000 +++ b/src/README Mon Oct 08 05:55:48 2001 +0000 @@ -26,6 +26,3 @@ either requires that you install Emacs with SYSPRV or make SYSUAF.DAT world readable. Otherwise, Emacs can determine information about the current user, but no one else. - -`pwd.h' contains definitions for VMS to be able to correctly simulate -`getpwdnam' and `getpwduid'.
--- a/src/atimer.c Mon Oct 08 05:48:56 2001 +0000 +++ b/src/atimer.c Mon Oct 08 05:55:48 2001 +0000 @@ -62,7 +62,7 @@ int pending_atimers; -/* Block/unblock SIGALRM.. */ +/* Block/unblock SIGALRM. */ #define BLOCK_ATIMERS sigblock (sigmask (SIGALRM)) #define UNBLOCK_ATIMERS sigunblock (sigmask (SIGALRM))
--- a/src/atimer.h Mon Oct 08 05:48:56 2001 +0000 +++ b/src/atimer.h Mon Oct 08 05:55:48 2001 +0000 @@ -58,8 +58,8 @@ /* Interval of this timer. */ EMACS_TIME interval; - /* Function to call when timer is ripe. Interupt input is - garanteed to not be blocked when this function is called. */ + /* Function to call when timer is ripe. Interrupt input is + guaranteed to not be blocked when this function is called. */ atimer_callback fn; /* Additional user-specified data to pass to FN. */