From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Hallvard B Furuseth Newsgroups: gmane.emacs.help Subject: Re: byte-uncompile Date: 01 Mar 2003 08:26:17 +0100 Organization: University of Oslo, Norway Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1046504088 8975 80.91.224.249 (1 Mar 2003 07:34:48 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 1 Mar 2003 07:34:48 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18p1WB-0002KU-00 for ; Sat, 01 Mar 2003 08:34:47 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18p1S1-0008LJ-09 for gnu-help-gnu-emacs@m.gmane.org; Sat, 01 Mar 2003 02:30:29 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!newsfeed.stueberl.de!feed.news.nacamar.de!uio.no!nntp.uio.no!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 13 Original-NNTP-Posting-Host: bombur.uio.no Original-X-Trace: readme.uio.no 1046503577 18802 129.240.186.42 (1 Mar 2003 07:26:17 GMT) Original-X-Complaints-To: abuse@uio.no Original-NNTP-Posting-Date: Sat, 1 Mar 2003 07:26:17 +0000 (UTC) Original-Xref: shelby.stanford.edu gnu.emacs.help:110736 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:7237 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:7237 googleartist@yahoo.com (Artist) writes: > How I can convert the byte-compiled function to non-byte-compiled > function on the fly. You can't. The best you can do is M-x disassemble, and then try to convert the result back to lisp by hand. You can study lisp/emacs-lisp/bytecomp.el and src/bytecode.c to see what the various bytecodes do, though you can probably guess just from looking at a number of them. -- Hallvard