home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / lucid / bug-lucid-emacs / text0163.txt < prev    next >
Encoding:
Text File  |  1993-07-04  |  737 b   |  25 lines

  1. Hi,
  2.  
  3. Manual-insert-man-file in man.el doesn't catch the HPUX way of
  4. specifying compressed man-files, which is by using directorynames
  5. with .Z suffixes (probably to allow for longer man-file names on
  6. systems with short filenames, I don't know).
  7.  
  8. Please change
  9.  
  10.       (if (equal (substring name -2) ".Z")
  11. to
  12.       (if (or (equal (substring name -2) ".Z")
  13.           (string-match "\\.Z/" name))
  14.  
  15. to fix the problem (or do something similar, as long as it works :)
  16.  
  17.  
  18. Kind regards,
  19. -- 
  20.                                              Bjxrn Stabell
  21.                                              University of Tromsx
  22.                                              (+47) 83 44 053 / 83 75 164
  23.                                              bjoerns@staff.cs.uit.no
  24.  
  25.