From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Dirk Joos Newsgroups: gmane.emacs.help Subject: Output in Emacs Date: Sun, 02 Nov 2003 20:15:45 +0100 Organization: T-Online Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1067801724 3086 80.91.224.253 (2 Nov 2003 19:35:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 2 Nov 2003 19:35:24 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 02 20:35:22 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AGO0Q-0003MQ-00 for ; Sun, 02 Nov 2003 20:35:22 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AGNxy-000457-VK for geh-help-gnu-emacs@m.gmane.org; Sun, 02 Nov 2003 14:32:50 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed00.sul.t-online.de!newsmm00.sul.t-online.com!t-online.de!news.t-online.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-X-Trace: news.t-online.com 1067800547 07 24494 -zZ3Vu+VS7AHgd 031102 19:15:47 Original-X-Complaints-To: usenet-abuse@t-online.de X-ID: rBR3tGZHreVEfLUgat680UMCRL6wBt49MsHMn4KmNGzjC6w63mjW6B User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; de-DE; rv:1.5) Gecko/20031013 Thunderbird/0.3 X-Accept-Language: de-de, de-at, de, en-us, en Original-Xref: shelby.stanford.edu gnu.emacs.help:117797 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:13736 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:13736 Hi, I'm working with GNU-Emacs and I want to know how I can print the content of a variable in the current buffer of emacs. What is the command? Here an example: (defun zahl() (interactive) (let ( (k 1) ) ;at this place I want to print the content ;of the variable k in the actual buffer at the current ;cursorposition. In emacs the result should be 1 on the screen ) ) This is just an example. I just want to know how I can print the content of a variable on the screen. Thank you very much Dirk