Search found 5 matches

by minibuffer
Tue Mar 15, 2011 1:39 pm
Forum: Emacs
Topic: How to view texi files?
Replies: 4
Views: 24842

Re: How to view texi files?

Now this begins to clarify. I stupidly tried to download the corresponding html-page instead of the gz-packet. No wonder why it looked so strange with all the tags inside it.
by minibuffer
Tue Mar 15, 2011 6:04 am
Forum: Emacs
Topic: How to view texi files?
Replies: 4
Views: 24842

Re: How to view texi files?

The mode seems to be the "texinfo" mode, emacs does it ok. But all I get is an unreadable html source view with all the html tags in between (or is it xml?) <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "h...
by minibuffer
Mon Mar 14, 2011 6:09 pm
Forum: Emacs
Topic: How to view texi files?
Replies: 4
Views: 24842

How to view texi files?

I'd like to read the spanish translation of emacs-lisp-intro

emacs-lisp-intro-es.texi

http://mercurial.intuxication.org/hg/em ... 91208876da

After downloading and starting the texi file in emacs, what should I do to see it in readable form?
by minibuffer
Wed Mar 09, 2011 2:05 pm
Forum: Emacs Lisp
Topic: Whats with the dot notation?
Replies: 2
Views: 10857

Whats with the dot notation?

Can someone please explain me what is the dot notation in lists:

Code: Select all

(first . second)
Why not just:

Code: Select all

(first second)
Thanks!
by minibuffer
Tue Feb 22, 2011 3:23 am
Forum: Emacs Lisp
Topic: File reading
Replies: 2
Views: 8529

File reading

Hello! I'm starting Emacs Lisp, and my question is a basic question about file handling, how is it done in Elisp? I'm coming from Python, so my problem is about the following: >>> f=open("btf001.srt") >>> lines=f.readlines() >>> print lines[9:13] ['3\r\n', '00:01:36,300 --> 00:01:38,200\r\...