Searched refs:lisp (Results 1 - 25 of 69) sorted by relevance

123

/macosx-10.10.1/emacs-93/emacs/lispintro/
H A DMakefile.in31 INFO_SOURCES = ${srcdir}/emacs-lisp-intro.texi
35 DVI_TARGETS = emacs-lisp-intro.dvi
48 cd $(srcdir); $(MAKEINFO) emacs-lisp-intro.texi -o $(infodir)/eintr
50 emacs-lisp-intro.dvi: ${INFO_SOURCES}
51 $(TEXI2DVI) -I $(srcdir) -I $(usermanualdir) $(srcdir)/emacs-lisp-intro.texi
53 emacs-lisp-intro.html: $(INFO_SOURCES)
54 $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi
H A Dmakefile.w32-in26 INFO_SOURCES = $(srcdir)/emacs-lisp-intro.texi
30 DVI_TARGETS = emacs-lisp-intro.dvi
49 $(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi
51 emacs-lisp-intro.dvi: $(INFO_SOURCES)
52 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi
54 emacs-lisp-intro.html: $(INFO_SOURCES)
55 $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi
/macosx-10.10.1/emacs-93/emacs/
H A Dmake-dist115 if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/version.el ]; then
116 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/version.el'." >&2
144 shortversion=`grep 'defconst[ ]*emacs-version' lisp/version.el \
146 version=`grep 'defconst[ ]*emacs-version' lisp/version.el \
149 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
190 ls -1 lisp/[a-zA-Z]*.el lisp/[
[all...]
H A Dconfig.bat174 rem For details see lisp.h where it defines USE_LSB_TAG
257 Echo Configuring the lisp directory...
258 cd lisp
/macosx-10.10.1/emacs-93/
H A DMakefile53 EXTRAEL= emacs/lisp/cus-load.el \
54 emacs/lisp/eshell/esh-groups.el \
55 emacs/lisp/finder-inf.el \
56 emacs/lisp/loaddefs.el \
57 emacs/lisp/mh-e/mh-loaddefs.el \
58 emacs/lisp/subdirs.el
131 $(INSTALL) -o root -g wheel -m 644 default.el "$(DSTROOT)"/usr/share/emacs/site-lisp
132 $(INSTALL) -o root -g wheel -m 644 site-start.el "$(DSTROOT)"/usr/share/emacs/site-lisp
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dlisp.vim21 setl lisp
/macosx-10.10.1/emacs-93/emacs/mac/
H A Dmake-package192 ### Check whether file ../lisp/version.el exists.
193 if [ ! -f ../lisp/version.el ]; then
194 echo "${progname}: Can't find \`../lisp/version.el'" >&2
199 shortversion=`grep 'defconst[ ]*emacs-version' ../lisp/version.el \
201 version=`grep 'defconst[ ]*emacs-version' ../lisp/version.el \
204 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
286 if [ ! -f ${srcdir}/lisp/abbrev.elc ]; then
302 find $sharedir/lisp $sharedir/leim -name "*.elc" -print | sed 's|\(.*\)\.elc$|/bin/rm -f \1.el|' | /bin/sh -s
308 find $sharedir/lisp $sharedir/leim -name "*.elc" -print | sed 's|\(.*\)\.elc$|/usr/bin/gzip -9 \1.el|' | /bin/sh -s
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dpp.el7 ;; Keywords: lisp
35 :group 'lisp)
51 (lisp-mode-variables nil)
52 (set-syntax-table emacs-lisp-mode-syntax-table)
135 (emacs-lisp-mode)
145 (set-syntax-table emacs-lisp-mode-syntax-table)
H A Dtrace.el9 ;; Keywords: tools, lisp
162 :group 'lisp)
H A Dshadow.el7 ;; Keywords: lisp
29 ;; The functions in this file detect (`find-emacs-lisp-shadows')
37 ;; new version of emacs and something in the site-lisp directory
58 (defgroup lisp-shadow nil
61 :group 'lisp)
67 :group 'lisp-shadow)
69 (defun find-emacs-lisp-shadows (&optional path)
183 \(\"/usr/gnu/emacs/site-lisp\" \"/usr/gnu/emacs/share/emacs/19.30/lisp\"\)
186 XXX.el in the site-lisp director
[all...]
H A Deldoc.el42 ;; (add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)
43 ;; (add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)
56 :group 'lisp
H A Dunsafep.el7 ;; Keywords: safety lisp utility
89 :group 'lisp
H A Dwarnings.el35 :group 'lisp)
H A Dlisp-mode.el0 ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands
7 ;; Keywords: lisp, languages
38 (defvar lisp-mode-abbrev-table nil)
40 (defvar emacs-lisp-mode-syntax-table
81 (defvar lisp-mode-syntax-table
82 (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
89 (define-abbrev-table 'lisp-mode-abbrev-table ())
91 (defvar lisp-imenu-generic-expression
157 (defvar lisp-doc-string-elt-property 'doc-string-elt
160 (defun lisp
[all...]
H A Dlisp.el0 ;;; lisp.el --- Lisp editing commands for Emacs
7 ;; Keywords: lisp, languages
33 ;; Note that this variable is used by non-lisp modes too.
40 :group 'lisp)
46 :group 'lisp)
536 (null (calculate-lisp-indent))
573 (defun lisp-complete-symbol (&optional predicate)
603 (beg (with-syntax-table emacs-lisp-mode-syntax-table
667 ;;; lisp.el ends here
/macosx-10.10.1/vim-55/runtime/syntax/
H A Ddylan.vim22 set lisp
24 setlocal lisp
/macosx-10.10.1/emacs-93/emacs/nt/
H A Dconfigure.bat515 if exist ..\lisp\makefile rm -f ../lisp/[Mm]akefile
516 copy /b config.settings+%MAKECMD%.defs+..\lisp\makefile.w32-in ..\lisp\makefile
523 if not exist ..\site-lisp\nul mkdir ..\site-lisp\
528 fc /b subdirs.el ..\site-lisp\subdirs.el >nul 2>&1
531 if exist ..\site-lisp\subdirs.el del ..\site-lisp\subdirs.el
532 copy subdirs.el ..\site-lisp\subdir
[all...]
/macosx-10.10.1/vim-55/runtime/indent/
H A Dpov.vim14 setlocal nolisp " Make sure lisp indenting doesn't supersede us.
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dfinder.el42 (require 'lisp-mnt)
79 (lisp . "Lisp support, including Emacs Lisp")
346 (set-syntax-table emacs-lisp-mode-syntax-table)
H A Dcus-edit.el214 (defgroup lisp nil function
2044 (cond ((eq form 'lisp)
2045 (insert " (lisp)"))
2068 :tag (if (memq form '(lisp mismatch))
2464 (const lisp))
2541 ;; If we don't know the state, see if we need to edit it in lisp form.
2570 ((memq form '(lisp mismatch))
2571 ;; In lisp mode edit the saved value when possible.
2775 (eq (widget-get widget :custom-form) 'lisp)))
2776 ("Show Saved Lisp Expression" custom-variable-edit-lisp
[all...]
H A Dcompletion.el126 ;; m-x add-completions-from-lisp-file
351 (defcustom completions-merging-modes '(lisp c)
352 "List of modes {`c' or `lisp'} for automatic completions merging.
355 :type '(set (const lisp) (const c))
1737 (cond ((memq major-mode '(emacs-lisp-mode lisp-mode))
1738 (add-completions-from-lisp-buffer)
1739 (setq mode 'lisp))
1755 (cond ((and (memq major-mode '(emacs-lisp-mode lisp
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Dinf-lisp.el1 ;;; inf-lisp.el --- an inferior-lisp mode
7 ;; Keywords: processes, lisp
30 ;; This file defines a lisp-in-a-buffer package (inferior-lisp mode)
43 ;; For further information on inferior-lisp mode, see the comments below.
48 ;; whether the file is source or executable. If you compile foo.lisp
50 ;; the default, not foo.lisp. This is tricky to do right, particularly
54 ;; It would be nice if inferior-lisp (and inferior scheme, T, ...) modes
67 (require 'lisp
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Datimer.c25 #include <lisp.h>
H A Dunexcw.c24 #include <lisp.h>
/macosx-10.10.1/file-46/file/magic/
H A DMakefile.am108 $(MAGIC_FRAGMENT_DIR)/lisp \

Completed in 160 milliseconds

123