]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorPavel Janík <Pavel@Janik.cz>
Mon, 8 Oct 2001 05:55:48 +0000 (05:55 +0000)
committerPavel Janík <Pavel@Janik.cz>
Mon, 8 Oct 2001 05:55:48 +0000 (05:55 +0000)
src/ChangeLog
src/Makefile.in
src/README
src/atimer.c
src/atimer.h

index 495a43ad89cedadce620c752552b0f0c5cd397d9..b9cfcabde29086332c4427e02b1edc0bf6eac9e8 100644 (file)
@@ -1,5 +1,9 @@
 2001-10-08  Pavel Jan\e,Bm\e(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 `;'.
index c041cae37f86f258bcfe6fedc0a0fc2f33ed21f3..b20ec7d0add65e749a5ddd11b462fe3c1d4371c1 100644 (file)
@@ -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.
index 60705cef318208417c6b9f196cfa987ca7c1b447..87b3ed7e1add2d0e01f4f0c9916cd4a40467142c 100644 (file)
@@ -26,6 +26,3 @@ systems where you are not overly concerned with security, since it
 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'.
index 54a038fd549687340416535f8319e88aac97cd3c..d2e2bc7b8908b370083167e817c56c00b999c0ee 100644 (file)
@@ -62,7 +62,7 @@ static struct atimer *atimers;
 
 int pending_atimers;
 
-/* Block/unblock SIGALRM.. */
+/* Block/unblock SIGALRM.  */
 
 #define BLOCK_ATIMERS   sigblock (sigmask (SIGALRM))
 #define UNBLOCK_ATIMERS sigunblock (sigmask (SIGALRM))
index 3ee73a650cd62b5cb18cba42fa521cb41f245a0a..7c1fb0544c629231bd60bf0f74413e743ef222a1 100644 (file)
@@ -58,8 +58,8 @@ struct atimer
   /* 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.  */