vote up 5 vote down star
1

Several times I see ^L in (mostly Emacs Lisp) source codes that looks like are separators of larger logical groups. Is it their real purpose? And if so, how can I use them? Is there a built-in Emacs functionality that utilize it?

flag

4 Answers

vote up 9 vote down check

This is a page break.

link|flag
1  
Otherwise known as a FORM-FEED character to people who remember line printers. – pavium Oct 16 at 8:47
Btw, they are in RFCs too (in .txts), but firefox doesn't show them. – andre-r Oct 16 at 9:27
vote up 2 vote down

That is indeed a page break character, which on older line printers skipped to the next page or paper. Code-wise, it does nothing; it is only there to split the code into larger sections. There are convenient Emacs commands to jump to the next and previous "page", and inserting these characters takes advantage of that.

link|flag
vote up 14 vote down

The Emacs commands backward-page and forward-page (C-x [ and C-x ]), among others, take advantage of ^Ls placed in the code as separators.

The habit did not propagate much to languages other than Emacs-lisp, but most languages treat ^L as a blank, so you can use these separators in your favorite language if you like the idea. You can type your own ^Ls with C-q C-l.

link|flag
vote up 0 vote down

A page break to split code into sections. See the following for more details.

http://www.emacswiki.org/emacs/PageBreaks

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.