home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / gnu / emacs / gnus / 966 < prev    next >
Encoding:
Text File  |  1992-07-26  |  1.9 KB  |  47 lines

  1. Newsgroups: gnu.emacs.gnus
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!eff!ckd
  3. From: ckd@eff.org (Christopher Davis)
  4. Subject: Re: moving around in article mode
  5. In-Reply-To: msanghvi@cs.ulowell.edu's message of Sun, 26 Jul 1992 21:45:13 GMT
  6. Message-ID: <CKD.92Jul26213810@loiosh.eff.org>
  7. Sender: usenet@eff.org (NNTP News Poster)
  8. Nntp-Posting-Host: loiosh.eff.org
  9. Organization: Electronic Frontier Foundation Tech Central
  10. References: <MSANGHVI.92Jul26164513@cs.ulowell.edu>
  11. Distribution: gnu
  12. Date: Mon, 27 Jul 1992 01:38:13 GMT
  13. Lines: 32
  14.  
  15. Mehul> == Mehul Sanghvi <msanghvi@cs.ulowell.edu> 
  16.  
  17.  Mehul>     i have been using GNUS for a while now and have noticed
  18.  Mehul> something that keeps happening to me. evrytime i read a
  19.  Mehul> newsgroup with say 20 or more articles in it and get to the last
  20.  Mehul> 4-5 articles the current article marker moves back to say
  21.  Mehul> article 15.
  22.  
  23. This is a bug in gnus-user-tale.  A fixed version has been posted here
  24. (though I don't know if it's been posted here *recently*).  The one I
  25. use (which may not have *all* the fixes, but fixes this problem) is up
  26. for anonymous ftp as ftp.eff.org:/users/ckd/gnus-user-tale.el.
  27.  
  28.  Mehul> P.S. also how do i get wraparound in *post-news* buffer?? i hate
  29.  Mehul> having to keep hitting the return key evrytime i get near the
  30.  Mehul> end of the line....
  31.  
  32. Set either your news-mode-hook or your text-mode-hook to turn on
  33. auto-fill mode.  Here's what I use:
  34.  
  35. ;; auto-fill in text mode, and make tab insert spaces
  36. (defun ckd-text-mode-hook ()
  37.    (auto-fill-mode 1)
  38.    (setq indent-tabs-mode nil)
  39.    )
  40.  
  41. (setq text-mode-hook 'ckd-text-mode-hook)
  42. --
  43. Christopher Davis * ckd@eff.org * System Administrator, EFF * +1 617 864 0665
  44.    ``The First Amendment is often inconvenient.  But that is besides the
  45.   point.  Inconvenience does not absolve the government of its obligation
  46.          to tolerate speech.'' --Justice Anthony Kennedy, in 91-155
  47.