Linux and Open Source Books and Software
Search Advanced SearchView Cart   Checkout   
 Location:  Home » O'Reilly Linux » General » Writing GNU Emacs Extensions  
Categories
Linux Books
Electronics
Linux Software
Linux Games
O'Reilly Linux
Tshirts
Information
Home
Linux Shop
Irish Hosting
ILUG
Linux Resources
Related Categories
• General
Programming
O'Reilly
By Publisher
Custom Stores
• General
Unix & Linux
O'Reilly
By Publisher
Custom Stores
• Linux
Unix & Linux
O'Reilly
By Publisher
Custom Stores
• Text Processing
Unix & Linux
O'Reilly
By Publisher
Custom Stores
• Operating Systems
Computer Science
New & Used Textbooks
Custom Stores
Specialty Stores
• Programming Languages
Computer Science
New & Used Textbooks
Custom Stores
Specialty Stores
• General AAS
Computer Science
New & Used Textbooks
Custom Stores
Specialty Stores
• General AAS
New & Used Textbooks
Custom Stores
Specialty Stores
Books
• General
Unix
Operating Systems
Computers & Internet
Subjects
• General AAS
Unix
Operating Systems
Computers & Internet
Subjects
• General
Operating Systems
Computers & Internet
Subjects
Books
• General AAS
Operating Systems
Computers & Internet
Subjects
Books
• General
Programming
Computers & Internet
Subjects
Books
• General AAS
Programming
Computers & Internet
Subjects
Books
• Emacs
Word Processors & Editors
Software
Computers & Internet
Subjects
• General
Software
Computers & Internet
Subjects
Books
• General AAS
Software
Computers & Internet
Subjects
Books
• General
Computers & Internet
Subjects
Books
• General AAS
Computers & Internet
Subjects
Books
• General AAS
Mathematics
Professional Science
Professional & Technical
Subjects
• Paperback
Binding (binding)
Refinements
Books
• Printed Books
Format (feature_browse-bin)
Refinements
Books
Subcategories
Mass Market
Trade

Writing GNU Emacs Extensions

Writing GNU Emacs Extensions

zoom enlarge 
Author: Bob Glickstein
Publisher: O'Reilly
Category: Book

Buy Used: $73.57



Avg. Customer Rating: 3.5 out of 5 stars 6 reviews
Sales Rank: 796769

Media: Paperback
Edition: 1
Number Of Items: 1
Pages: 236
Shipping Weight (lbs): 1
Dimensions (in): 9.2 x 7 x 0.7

ISBN: 1565922611
Dewey Decimal Number: 005
UPC: 636920922926
EAN: 9781565922617
ASIN: 1565922611

Publication Date: April 1, 1997
Availability: Usually ships in 1-2 business days
Condition: GOOD, HAS A CREASED MARK ON F-COVER, 100% GUARANTEED, FAST SHIPPER, CHECK OUR FEEDBACKS.

Similar Items:

  • Learning GNU Emacs, Third Edition
  • Structure and Interpretation of Computer Programs - 2nd Edition (MIT Electrical Engineering and Computer Science)
  • The Art of the Metaobject Protocol
  • Practical Common Lisp
  • Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp

Editorial Reviews:

Product Description
Yes, it is possible to be all things to all people, if you're talking about the Emacs editor. As a user, you can make any kind of customization you want, from choosing the keystrokes that invoke your favorite commands to creating a whole new work environment that looks like nothing ever developed before. GNU Emacs offers a full version of the Lisp programming language, allowing you to create whole new editors or just alter aspects of the many functions it already provides. In this book, Bob Glickstein delves deep into the features that permit far-reaching Emacs customizations. He teaches you the Lisp language and discusses Emacs topics (such as syntax tables and macro templates) in easy-to-digest portions. The realistic examples, each successively refined a number of times, illustrate not only Emacs Lisp, but the development process as well.


Customer Reviews:   Read 1 more reviews...

3 out of 5 stars Good place to start   April 30, 2007
I found this book quite useful to get me started on writing Gnu emacs Lisp. It is clear and fairly well organized, and far easier to deal with than the standard documentation, which I find lacks the level of organization needed for so large a language.

By "large" I mean mainly the number of functions available. Lisp as a language is not really hard to learn; it is just so different from many programming languages that it requires a few days of effort to get to "aha!". After that it becomes easy.

The drawback to this book is that it doesn't take you far enough. It is an excellent start, and having worked through it you should be able to find your way around in the online or other emacs Lisp documentation. However, it lacks an index of emacs Lisp functions, or other similar reference material. I find this unfortunate, but it's not a show-stopper because once you get through this book you will know enough to use other reference material.



3 out of 5 stars Emacs nirvana it ain't -- but you could do worse.   April 9, 2003
 10 out of 13 found this review helpful

If you have taken the wise step and decided to learn emacs you're aware of the eLISP substructure underlying your C- and M- actions. Once you're aware that this power is there, you will invariably want to use it to make some routine editing patterns faster / more efficient.

I mean heck, you learned emacs to hack code in, didn't you? Why not hack emacs to make your hacking faster?

In true geek fashion, I thought that this book would be, like so many of ORA's books, a canonical START on the monopoly board of computer / technology progress.

It wasn't really.

It started with introducing the notion of evaluating a lisp command string (in this case, making sure you have your ^H, ^? and Erase sorted out) - and goes from there. Too little time is spent on primitives (see, not really a programming guide as such) and instead uses a series of examples to make you think about how to use eLISP to handle an issue.

....but that's not what you expect from an ORA book is it? You want the reference and the step-by-step -- you want to know you went to the source to get the answer and here was the path, right?

Well for that you are actually better off going to gnu.org and reading the elisp manual there. It much more closely approximates the path that the ORA books (i.e. the camel book, etc.) take.

Where this fits in -- a nice reference, maybe.

IF YOU DO get this book, you'll find some handy examples and a few 'tricks of the trade. ' Nothing really great though.


4 out of 5 stars Step 3 in mastering Emacs...   July 27, 2001
 16 out of 17 found this review helpful

...is reading this book. Step 1 would be to read O'Reilly's "Learning Gnu Emacs" from cover to cover. Step 2 would be to start bookmarking "Info" pages in the Emacs and Elisp manuals (inside Emacs; Emacs can bookmark places in files you've edited, bookmark directories, bookmark Info pages, etc.); and then you are ready to read this book.

While you can become proficient in Emacs just by learning a handful of commands, to be truly productive and happy you must learn most of the features and use them. This is a very long process (over a year for me, learning a little bit more each day). But what I've gained from the journey is invaluable. For example, one insight I've gotten is that Emacs can work very well for the novice (open/type/save/close) and the expert (write major mode to handle new language) equally well, and this idea can apply to any software project. (Sure, it sounds simplistic but the moment of "Aha!" is more profound than that.)

This book is fairly small and progressively introduces new ideas in writing Lisp code to add functionality to Emacs. I think in retrospect the topics covered were well chosen because I have looked up the examples time and again to use code snippets.

Step 4 in mastering Emacs is to read the newsgroup gnu.emacs.help every day for a few months, which will teach you about a great many features Emacs has that are not covered in any book (or covered very well, like term mode, font-lock and many more).


2 out of 5 stars Presents its material in fragments   December 18, 1999
If the description "tutorial" means presentation of fragments of Lisp code interspersed with commentary, then this book is indeed tutorial. This book would have been much more valuable if the author had presented complete listings of his .emacs files. There are two problems with fragments. First, they are not as interesting as complete listings. Second, when you put them together and they don't work, you get to wonder whether they were complete to begin with. It is no doubt a grand book "if you know what you are doing." But if you know what you are doing, Ducky, you can learn everything you need to know by reading the HOW-TOs and the sources, then you don't need a "tutorial."

I bought this book thinking it would shed some light on why emacs says "File mode specification error: (void-function linux-c-mode)" when I put the comment /* -*- linux-c -*- */ as the first line of my source file. Emacs complains, yet that comment invokes exactly what I want: 8-space tabs. But this book doesn't talk about C mode, so it remains a mystery.


5 out of 5 stars A wonderful intro into the mysteries of emacs   October 2, 1998
 4 out of 8 found this review helpful

The book is well paced and easy to read. The concepts build naturally upon one another. Glickstein provides real world examples to introduce new features. I highly recommend it!

Powered by Apache on Ubuntu Linux with php5, xml, mod_rewrite

Warning: AOM::include() [function.AOM-include]: URL file-access is disabled in the server configuration in /home/blacknight/linuxmall/web/aom.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code on line 7108

Warning: AOM::include(http://www.linuxmall.net/textlinks.php) [function.AOM-include]: failed to open stream: no suitable wrapper could be found in /home/blacknight/linuxmall/web/aom.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code on line 7108

Warning: AOM::include() [function.include]: Failed opening 'http://www.linuxmall.net/textlinks.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/blacknight/linuxmall/web/aom.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code on line 7108
All prices are in US dollars and are provided by Amazon web services. There maybe shipping restrictions on some items.

Warning: AOM::include() [function.AOM-include]: URL file-access is disabled in the server configuration in /home/blacknight/linuxmall/web/aom.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code on line 5831

Warning: AOM::include(http://www.linuxmall.net/footer.html) [function.AOM-include]: failed to open stream: no suitable wrapper could be found in /home/blacknight/linuxmall/web/aom.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code on line 5831

Warning: AOM::include() [function.include]: Failed opening 'http://www.linuxmall.net/footer.html' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/blacknight/linuxmall/web/aom.php(3) : eval()'d code(1) : eval()'d code(1) : eval()'d code on line 5831