[net.emacs] 16.60

rms@mit-prep (09/21/85)

From: Richard M. Stallman <rms@mit-prep>
I have fixed two more bugs, making Emacs 16.60:
A file diff-16.56-16.60 is available on /u2/emacs

in process.c:
***************
*** 38,43
  #include "window.h"
  #include "buffer.h"
  #include "process.h"
  
  extern errno;
  extern sys_nerr;

--- 38,47 -----
  #include "window.h"
  #include "buffer.h"
  #include "process.h"
+   
+ #ifdef howmany				/* in sys/types.h under 4.3 BSD */
+ #undef howmany
+ #endif
  
  extern errno;
  extern sys_nerr;


in dispnew.c:
***************
*** 604,613
    register int i;
  
    int free_at_end_vpos = screen_height;
-   if (scroll_region_ok)
-     free_at_end_vpos -= unchanged_at_bottom;
-   else if (memory_below_screen)
-     free_at_end_vpos = -1;
    
    /* Compute hash codes of all the lines.
       Also calculate number of changed lines,

--- 604,609 -----
    register int i;
  
    int free_at_end_vpos = screen_height;
    
    /* Compute hash codes of all the lines.
       Also calculate number of changed lines,
***************
*** 642,647
  
    window_size = screen_height - unchanged_at_top - unchanged_at_bottom;
  
    /* If large window, fast terminal and few lines in common between
       PhysScreen and DesiredScreen, don't bother with i/d calc.  */
    if (window_size >= 18 && baud_rate > 2400

--- 638,648 -----
  
    window_size = screen_height - unchanged_at_top - unchanged_at_bottom;
  
+   if (scroll_region_ok)
+     free_at_end_vpos -= unchanged_at_bottom;
+   else if (memory_below_screen)
+     free_at_end_vpos = -1;
+ 
    /* If large window, fast terminal and few lines in common between
       PhysScreen and DesiredScreen, don't bother with i/d calc.  */
    if (window_size >= 18 && baud_rate > 2400

brad@gcc-bill.ARPA (Brad Parker) (09/22/85)

In article <5352@mit-eddie.UUCP> rms@mit-prep writes:
>From: Richard M. Stallman <rms@mit-prep>
>I have fixed two more bugs, making Emacs 16.60:
>A file diff-16.56-16.60 is available on /u2/emacs

Could someone tell me what "/u2/emacs" is? I know all about usenet and
ARPA, but "/u2/emacs" looks like a directory to me... (we have GNU and
I'd like to start maintaing it (spelling is, of course, optional)

-- 

J Bradford Parker
uucp: seismo!harvard!gcc-bill!brad

"She said you know how to spell AUDACIOUSLY? I could tell I was in love...
You want to go to heaven? or would you rather not be saved?" - Lloyd Coal

tower@mit-prep (09/23/85)

From: Leonard H. Tower Jr. <tower@mit-prep>
   Relay-Version: version B 2.10.1 6/24/83; site mit-eddie.UUCP
   Posting-Version: version B 2.10.2 9/18/84; site gcc-bill.ARPA
   Path: mit-eddie!think!harvard!gcc-bill!brad
   From: brad@gcc-bill.ARPA (Brad Parker)
   Newsgroups: net.emacs
   Date: Sun, 22-Sep-85 12:47:48 EDT
   Article-I.D.: gcc-bill.326
   Posted: Sun Sep 22 12:47:48 1985
   References: <5352@mit-eddie.UUCP>
   Reply-To: brad@gcc-bill.UUCP (Brad Parker)
   Organization: General Computer Company, Cambridge Ma (Home of the HyperDrive)
   Lines: 16
   Apparently-To: emacs-netnews-distribution@mit-prep

   In article <5352@mit-eddie.UUCP> rms@mit-prep writes:
   >From: Richard M. Stallman <rms@mit-prep>
   >I have fixed two more bugs, making Emacs 16.60:
   >A file diff-16.56-16.60 is available on /u2/emacs

   Could someone tell me what "/u2/emacs" is? I know all about usenet and
   ARPA, but "/u2/emacs" looks like a directory to me... (we have GNU and
   I'd like to start maintaing it (spelling is, of course, optional)

   -- 

   J Bradford Parker

It's mit-prep:/u2/emacs.  People on the Internet can use arap ftp or
arpa/BSD rcp to copy from it.  see README and RCP.README in that
directory.

The command C-H C-D in GNU Emacs also gives basic distribution data.

Len