unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Adding a sublist to a list on startup
@ 2010-12-13 19:55 Tyler Smith
  2010-12-13 21:17 ` Drew Adams
  2010-12-15  4:18 ` Kevin Rodgers
  0 siblings, 2 replies; 11+ messages in thread
From: Tyler Smith @ 2010-12-13 19:55 UTC (permalink / raw)
  To: help-gnu-emacs

Hi,

I need to customize the variable LaTeX-environment-list in Auctex. To
get the behaviour I want, I have included the following in my .emacs:

(defun my-LaTeX-hook ()
  (push '("choices" . LaTeX-insert-choice) LaTeX-item-list)
  (push '("parts" . LaTeX-insert-part) LaTeX-item-list)
  (push '("questions" . LaTeX-insert-question) LaTeX-item-list)
  (push '("choices" LaTeX-env-item) LaTeX-environment-list)
  (push '("questions" LaTeX-env-item) LaTeX-environment-list)
  (push '("parts" LaTeX-env-item) LaTeX-environment-list))

(add-hook 'LaTeX-mode-hook 'my-LaTeX-hook)

However, the last three push commands aren't doing what I expect. If I
evaluate them from a buffer that is in Auctex/LaTeX mode, the value of
LaTeX-environment-list contains:

Value: 
(("abstract")
 ("array" LaTeX-env-array)
 ("center")
 ("choices" LaTeX-env-item)
;; Extra lines snipped
 ("verse"))

However, my hook doesn't work properly - it gives me this instead:

Value:
((LaTeX-env-item)
 ("abstract")
 ("array" LaTeX-env-array)
 ("center")
 ("choices")
;; Extra lines snipped
 ("verse"))

So the two-element list I'm trying to add to LaTeX-environment-list is
getting split into two atoms, each added as a separate list. I guess I'm
modifying something at the wrong time, but I'm not sure exactly what.

Help?

Thanks,

Tyler





^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2010-12-17  2:43 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-13 19:55 Adding a sublist to a list on startup Tyler Smith
2010-12-13 21:17 ` Drew Adams
2010-12-13 21:31   ` Tyler Smith
2010-12-13 21:57     ` Drew Adams
2010-12-16 13:52       ` Tyler Smith
2010-12-16 14:52         ` Drew Adams
2010-12-17  2:43           ` Tyler Smith
2010-12-16 16:48         ` PJ Weisberg
2010-12-15  4:18 ` Kevin Rodgers
2010-12-15 15:21   ` Tyler Smith
2010-12-16  7:18     ` Kevin Rodgers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).