home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / gnu / emacs / help / 5285 < prev    next >
Encoding:
Internet Message Format  |  1993-01-07  |  1021 b 

  1. Path: sparky!uunet!stanford.edu!ames!sun-barr!cs.utexas.edu!zaphod.mps.ohio-state.edu!caen!nic.umass.edu!noc.near.net!news.bbn.com!news.bbn.com!map
  2. From: map@BBN.Com (Mike Patton)
  3. Newsgroups: gnu.emacs.help
  4. Subject: Re: how can i insert a quote with (insert) ?
  5. Date: 7 Jan 93 12:52:10
  6. Organization: Bolt Beranek and Newman, Cambridge, MA 02138 USA
  7. Lines: 7
  8. Distribution: usa
  9. Message-ID: <MAP.93Jan7125210@songlines.BBN.Com>
  10. References: <1993Jan7.140754.9906@wl.com>
  11. Reply-To: Incoming Replies <MAP=Reply@BBN.Com>
  12. NNTP-Posting-Host: songlines.bbn.com
  13. In-reply-to: agrafiot@wl.com's message of Thu, 7 Jan 1993 14:07:54 GMT
  14.  
  15. In article <1993Jan7.140754.9906@wl.com> agrafiot@wl.com (Dimitris Agrafiotis) writes:
  16.    How can I insert a double quote (") with the insert command as part of
  17.    a larger string? (insert "..."...")
  18.  
  19. You're really asking the more general question of how do you represent
  20. a quote in a string and the answer is with backslash escape, just like
  21. in C.  I.e. your example should be: (insert "...\"...")
  22.