comparison lisp/emacs-lisp/lisp.el @ 659:505130d1ddf8

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Sat, 30 May 1992 22:12:04 +0000
parents 8b1123702915
children 4f28bd14272c
comparison
equal deleted inserted replaced
658:7cbd4fcd8b0f 659:505130d1ddf8
1 ;; Lisp editing commands for Emacs 1 ;;; lisp.el --- Lisp editing commands for Emacs
2
2 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. 3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
3 4
4 ;; This file is part of GNU Emacs. 5 ;; This file is part of GNU Emacs.
5 6
6 ;; GNU Emacs is free software; you can redistribute it and/or modify 7 ;; GNU Emacs is free software; you can redistribute it and/or modify
258 (setq list (cdr list))) 259 (setq list (cdr list)))
259 (setq list (nreverse new)))) 260 (setq list (nreverse new))))
260 (with-output-to-temp-buffer " *Completions*" 261 (with-output-to-temp-buffer " *Completions*"
261 (display-completion-list list))) 262 (display-completion-list list)))
262 (message "Making completion list...%s" "done"))))) 263 (message "Making completion list...%s" "done")))))
264
265 ;;; lisp.el ends here