help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: learning Emacs Lisp


From: Juanma Barranquero
Subject: Re: learning Emacs Lisp
Date: Tue, 11 Nov 2008 11:43:45 +0100

On Tue, Nov 11, 2008 at 09:48, Richard Riley <rileyrgdev@gmail.com> wrote:

> But would
> aligned brackets really hurt anyone? I dont think so.

Depend on your definition of "hurt". For many people, myself included,
is ugly to the point of being almost unbearable.

I suppose writing Pascal code like this

  if my_condition then begin
    { ... }
  end else begin
    { ... }
  end;

or C code like this

  if (my_condition) { /*...*/ }
  else { /*...*/ }

or worse:

 #define BEGIN {
 #define END }
 #define THEN
 #define ELSE else
 #define IF(c) if ((c))

  IF(my_condition) THEN
    BEGIN
      /* ...*/
    END
  ELSE
    BEGIN
      /*...*/
    END

doesn't really *hurt* anyone. But still...

  Juanma




reply via email to

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