*** 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 495a43a..b9cfcab 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 c041cae..b20ec7d 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 60705ce..87b3ed7 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 54a038f..d2e2bc7 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 3ee73a6..7c1fb05 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.  */