Trent W. Buck writes:

 > Certainly in a language like Lisp I don't feel any real need to do
 > "inline" alignment.  I don't know if that's a property of the
 > language, or me, or an amalgam of both.

I think it's probably a function of how often you write literal
arrays.  I do things like

(defvar addrexp-folder-alist
  '(("python-...@python\\.org"      "python-dev")
    ("@python\\.org"                "python-nec")
    ("xemacs-servi...@xemacs\\.org" "xemacs-services")
    ("administrat...@tux\\.org"     "xemacs-services")
    ;; etc etc
   ))

all the time.  I think it's vastly more readable than

(defvar addrexp-folder-alist
  '(("python-...@python\\.org" "python-dev")
    ("@python\\.org" "python-nec")
    ("xemacs-servi...@xemacs\\.org" "xemacs-services")
    ("administrat...@tux\\.org" "xemacs-services")
    ;; etc etc
   ))


_______________________________________________
darcs-users mailing list
[email protected]
http://lists.osuosl.org/mailman/listinfo/darcs-users

Reply via email to