emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/gnus/ietf-drums.el [gnus-5_10-branch


From: Reiner Steib
Subject: [Emacs-diffs] Changes to emacs/lisp/gnus/ietf-drums.el [gnus-5_10-branch]
Date: Tue, 31 Aug 2004 11:43:27 -0400

Index: emacs/lisp/gnus/ietf-drums.el
diff -c emacs/lisp/gnus/ietf-drums.el:1.9.2.2 
emacs/lisp/gnus/ietf-drums.el:1.9.2.3
*** emacs/lisp/gnus/ietf-drums.el:1.9.2.2       Mon Aug 30 18:18:30 2004
--- emacs/lisp/gnus/ietf-drums.el       Tue Aug 31 15:38:25 2004
***************
*** 1,5 ****
  ;;; ietf-drums.el --- Functions for parsing RFC822bis headers
! ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
  ;;        Free Software Foundation, Inc.
  
  ;; Author: Lars Magne Ingebrigtsen <address@hidden>
--- 1,5 ----
  ;;; ietf-drums.el --- Functions for parsing RFC822bis headers
! ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
  ;;        Free Software Foundation, Inc.
  
  ;; Author: Lars Magne Ingebrigtsen <address@hidden>
***************
*** 27,32 ****
--- 27,42 ----
  ;; Messages".  This library is based on
  ;; draft-ietf-drums-msg-fmt-05.txt, released on 1998-08-05.
  
+ ;; Pending a real regression self test suite, Simon Josefsson added
+ ;; various self test expressions snipped from bug reports, and their
+ ;; expected value, below.  I you believe it could be useful, please
+ ;; add your own test cases, or write a real self test suite, or just
+ ;; remove this.
+ 
+ ;; <address@hidden>
+ ;; (ietf-drums-parse-address "'foo' <address@hidden>")
+ ;; => ("address@hidden" . "'foo'")
+ 
  ;;; Code:
  
  (eval-when-compile (require 'cl))
***************
*** 64,72 ****
      (modify-syntax-entry ?> ")" table)
      (modify-syntax-entry ?@ "w" table)
      (modify-syntax-entry ?/ "w" table)
!     (modify-syntax-entry ?* " " table)
!     (modify-syntax-entry ?\; " " table)
!     (modify-syntax-entry ?\' " " table)
      (if (featurep 'xemacs)
        (let ((i 128))
          (while (< i 256)
--- 74,82 ----
      (modify-syntax-entry ?> ")" table)
      (modify-syntax-entry ?@ "w" table)
      (modify-syntax-entry ?/ "w" table)
!     (modify-syntax-entry ?* "_" table)
!     (modify-syntax-entry ?\; "_" table)
!     (modify-syntax-entry ?\' "_" table)
      (if (featurep 'xemacs)
        (let ((i 128))
          (while (< i 256)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]