Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site burdvax.UUCP Path: utzoo!linus!security!genrad!grkermit!masscomp!clyde!akgua!psuvax!burdvax!hdj From: hdj@burdvax.UUCP Newsgroups: net.emacs Subject: save-window-excursion / recursive-edit / visit-file Message-ID: <1413@burdvax.UUCP> Date: Tue, 24-Jan-84 09:40:06 EST Article-I.D.: burdvax.1413 Posted: Tue Jan 24 09:40:06 1984 Date-Received: Fri, 27-Jan-84 08:06:26 EST Organization: System Development Corporation, Paoli PA Lines: 23 [] I'm in the process of writing some fairly complex MockLisp code in support of a "programming environment" I'm building on top of Emacs #85. I discovered that the following construct does not do the expected thing: (save-window-excursion (visit-file "somefile") (recursive-edit)) Specifically, recursive-edit never seems to be called. On the other hand, (save-window-excursion (visit-file "somefile") (message "hello there") ) does display "hello there" in the minibuffer. Does anyone have a clue as to the problem? Or better yet, a fix? Thanks, Herb Jellinek