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

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

Re: Elisp help


From: Barry Margolin
Subject: Re: Elisp help
Date: Sat, 13 Oct 2007 22:40:31 -0400
User-agent: MT-NewsWatcher/3.5.2 (PPC Mac OS X)

In article <1i5xqw1.1d7snli1fy5m8zN%zozette.milane@gmail.com>,
 zozette.milane@gmail.com (frederic) wrote:

> Could anybody kelp me?
> I would like to write something like:
> 
> if  (I'am at the beginning of buffer)
> then (add a newline)
> else (do nothing)
> 
> How are these lines writed in Elisp ?
> 
> frederic 

(if (= (point) (point-min))
    (insert "\n"))

-- 
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
*** PLEASE don't copy me on replies, I'll read them in the group ***


reply via email to

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