Mercurial > emacs
view lisp/=libc.el @ 19445:94a54fbffb3e
A lot of comment and doc fixes.
Replace: 'nil by nil, '() by nil, 't by t.
(ps-print-version): New version number (3.05).
(ps-zebra-stripe, ps-number-of-zebra, ps-line-number)
(ps-print-background-image, ps-print-background-text): New variables
to customize zebra stripes, line number, image background and text
background features, respectively.
(ps-adobe-tag): Tagged to PostScript level 3.
(ps-print-buffer, ps-print-buffer-with-faces)
(ps-print-region, ps-print-region-with-faces)
(ps-spool-buffer, ps-spool-buffer-with-faces)
(ps-spool-region, ps-spool-region-with-faces): Call more primitive
functions for PostScript printing (functions below).
(ps-print-with-faces, ps-print-without-faces)
(ps-spool-with-faces, ps-spool-without-faces): More primitive
functions for PostScript printing.
(ps-line-lengths, ps-nb-pages-buffer, ps-nb-pages-region)
(ps-line-lengths-internal, ps-nb-pages): Doc fixes.
(ps-print-prologue-1): a lot of PostScript programming:
/dobackgroundstring, /dounderline, /UL: Postscript functions deleted.
/reencodeFontISO, /F, /BG, /HL, /W, /S, /BeginDSCPage, /BeginPage,
/EndPage: adjusted for new effects (outline, shadow, etc).
/PLN, /EF, /Hline, /doBox, /doRect, /doShadow, /doOutline,
/FillBgColor, /doLineNumber, /printZebra, /doColumnZebra,
/doZebra, /BeginBackImage, /EndBackImage, /ShowBackText: New procedures.
(ps-current-underline-p, ps-set-underline): Var and fn deleted.
(ps-showline-count, ps-background-pages, ps-background-all-pages)
(ps-background-text-count, ps-background-image-count): New variables.
(ps-header-font, ps-header-title-font)
(ps-header-line-height, ps-header-title-line-height)
(ps-landscape-page-height): Set initial value to nil.
(ps-print-face-extension-alist, ps-print-face-map-alist):
New variables for face remapping.
(ps-new-faces, ps-extend-face-list, ps-extend-face):
New functions for face remapping.
(ps-override-list, ps-extension-to-bit-face)
(ps-extension-to-screen-face, ps-extension-bit)
(ps-initialize-faces, ps-map-font-lock, ps-screen-to-bit-face):
New internal functions for face remapping.
(ps-get-page-dimensions): Fix error message.
(ps-insert-file): Doc fix and programming enhancement.
(ps-begin-file, ps-end-file, ps-get-buffer-name, ps-begin-page)
(ps-next-line, ps-plot-region, ps-face-attributes)
(ps-face-attribute-list, ps-plot-with-face)
(ps-generate-postscript-with-faces): Handle new output features.
(ps-generate): save-excursion inserted to return back point at
position before calling ps-print.
(ps-do-spool): Access dos-ps-printer variable through symbol-value.
(ps-prsc, ps-c-prsc, ps-s-prsc): Use backquote.
(ps-basic-plot-whitespace, ps-emacs-face-kind-p): Internal blank
line eliminated.
(ps-float-format, ps-current-effect): New internal variables.
(ps-output-list, ps-count-lines, ps-background-pages)
(ps-get-boundingbox, ps-float-format, ps-background-text)
(ps-background-image, ps-background, ps-header-height)
(ps-get-face): New internal functions.
(ps-control-character): Handle control characters.
(ps-gnus-print-article-from-summary): Updated for Gnus 5.
(ps-jack-setup): Replace 'nil by nil, 't by t.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 20 Aug 1997 23:11:35 +0000 |
parents | 06f81684d7ea |
children |
line wrap: on
line source
;;; libc.el -- lookup C symbols in the GNU C Library Reference Manual. ;; Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. ;;; Author: Ralph Schleicher <rs@purple.UL.BaWue.DE> ;;; Keywords: local c info ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Commentary: ;; This code has a long history. It started as a minor ;; mode for C mode. This era ended with the release of version 2 ;; of the GNU C Library in 1997. The code was therefore rewritten ;; more or less from scratch so that all lookups are performed via ;; indices. Not finding an existing symbol in an index means that ;; there is an error in the manual. Long missed features like a ;; separate input history, symbol name completion in the mini-buffer, ;; highlighting of looked up symbol names in the Info buffer, and ;; implicitly prepending `struct', `union' or `enum' to data types ;; were added in this phase too. ;;; Code: (require 'info) (defvar libc-info-file-name "libc" "Basename of the Info file of the GNU C Library Reference Manual.") (defvar libc-highlight-face 'highlight "*Face for highlighting looked up symbol names in the Info buffer. `nil' disables highlighting.") (defvar libc-highlight-overlay nil "Overlay object used for highlighting.") (defconst libc-symbol-completions nil "Alist of documented C symbols.") (defconst libc-file-completions nil "Alist of documented programs or files.") (defvar libc-history nil "History of previous input lines.") ;;;###autoload (defun libc-describe-symbol (symbol-name) "Display the documentation of a C symbol in another window. SYMBOL-NAME must be documented in the GNU C Library Reference Manual. If called interactively, SYMBOL-NAME will be read from the mini-buffer. Optional prefix argument means insert the default symbol (if any) into the mini-buffer so that it can be edited. The default symbol is the one found at point. If SYMBOL-NAME is a public function, variable, or data type of the GNU C Library but `libc-describe-symbol' fails to display it's documentation, then you have found a bug in the manual. Please report that to the mail address `bug-glibc-manual@prep.ai.mit.edu' so that it can be fixed." (interactive (let* ((completion-ignore-case nil) (enable-recursive-minibuffers t) (symbol (libc-symbol-at-point)) (value (completing-read (if symbol (format "Describe symbol (default %s): " symbol) (format "Describe symbol: ")) libc-symbol-completions nil nil (and current-prefix-arg symbol) 'libc-history))) (list (if (equal value "") symbol value)))) (or (assoc symbol-name libc-symbol-completions) (error "Not documented as a C symbol: %s" (or symbol-name ""))) (or (libc-lookup-function symbol-name) (libc-lookup-variable symbol-name) (libc-lookup-type symbol-name))) ;;;###autoload (defun libc-describe-file (file-name) "Display the documentation of a program or file in another window. FILE-NAME must be documented in the GNU C Library Reference Manual." (interactive (let* ((completion-ignore-case nil) (enable-recursive-minibuffers t)) (list (completing-read "Describe program or file: " libc-file-completions nil nil nil 'libc-history)))) (or (assoc file-name libc-file-completions) (error "Not documented as a program or file: %s" (or file-name ""))) (libc-lookup-file file-name)) ;;;###autoload (defun libc-search (regexp &optional arg) "Search in the GNU C Library Reference Manual for REGEXP. Prefix argument means search should ignore case." (interactive "sSearch `libc.info' for regexp: \nP") (or (get-buffer "*info*") (save-window-excursion (info))) (switch-to-buffer-other-window "*info*") (Info-goto-node (concat "(" libc-info-file-name ")")) (let ((case-fold-search arg)) (Info-search regexp))) (defun libc-make-completion-alist (info-nodes &optional regexp) "Create a unique alist from all menu items in the Info nodes INFO-NODES of the GNU C Reference Manual. Optional second argument REGEXP means include only menu items matching the regular expression REGEXP." (condition-case nil (let (completions item) (save-window-excursion (info libc-info-file-name) (while info-nodes (Info-goto-node (car info-nodes)) (goto-char (point-min)) (and (search-forward "\n* Menu:" nil t) (while (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t) (setq item (buffer-substring (match-beginning 1) (match-end 1))) (and (not (assoc item completions)) (if regexp (string-match regexp item) t) (setq completions (cons (cons item nil) completions))))) (setq info-nodes (cdr info-nodes))) (Info-directory)) completions) (error nil))) (defun libc-after-manual-update () "This function must only be called after a new version of the GNU C Library Reference Manual was installed on your system." (setq libc-symbol-completions (libc-make-completion-alist '("Function Index" "Variable Index" "Type Index")) libc-file-completions (libc-make-completion-alist '("File Index") "^[^ \t]+$"))) (or (and libc-symbol-completions libc-file-completions) (libc-after-manual-update)) (defun libc-symbol-at-point () "Get the C symbol at point." (condition-case nil (save-excursion (backward-sexp) (let ((start (point)) prefix name) ;; Test for a leading `struct', `union', or `enum' keyword ;; but ignore names like `foo_struct'. (setq prefix (and (< (skip-chars-backward " \t\n") 0) (< (skip-chars-backward "_a-zA-Z0-9") 0) (looking-at "\\(struct\\|union\\|enum\\)\\s ") (concat (buffer-substring (match-beginning 1) (match-end 1)) " "))) (goto-char start) (and (looking-at "[_a-zA-Z][_a-zA-Z0-9]*") (setq name (buffer-substring (match-beginning 0) (match-end 0)))) ;; Caveat! Look forward if point is at `struct' etc. (and (not prefix) (or (string-equal name "struct") (string-equal name "union") (string-equal name "enum")) (looking-at "[a-z]+\\s +\\([_a-zA-Z][_a-zA-Z0-9]*\\)") (setq prefix (concat name " ") name (buffer-substring (match-beginning 1) (match-end 1)))) (and (or prefix name) (concat prefix name)))) (error nil))) (defun libc-lookup-function (function) (libc-search-index "Function Index" function "^[ \t]+- \\(Function\\|Macro\\): .*\\<" "\\>")) (defun libc-lookup-variable (variable) (libc-search-index "Variable Index" variable "^[ \t]+- \\(Variable\\|Macro\\): .*\\<" "\\>")) (defun libc-lookup-type (data-type) (libc-search-index "Type Index" data-type "^[ \t]+- Data Type: \\<" "\\>")) (defun libc-lookup-file (file-name) (libc-search-index "File Index" file-name)) (defun libc-search-index (index item &optional prefix suffix) "Search ITEM in the Info index INDEX and go to that Info node. Value is ITEM or `nil' if an error occurs. If PREFIX and/or SUFFIX are non-`nil', then search the Info node for the first occurrence of the regular expression `PREFIX ITEM SUFFIX' and leave point at the beginning of the first line of the match. ITEM will be highlighted with `libc-highlight-face' iff `libc-highlight-face' is not `nil'." (condition-case nil (save-selected-window (or (get-buffer "*info*") (save-window-excursion (info))) (switch-to-buffer-other-window "*info*") (Info-goto-node (concat "(" libc-info-file-name ")" index)) (Info-menu item) (if (or prefix suffix) (let ((case-fold-search nil) (buffer-read-only nil)) (goto-char (point-min)) (re-search-forward (concat prefix (regexp-quote item) suffix)) (goto-char (match-beginning 0)) (and window-system libc-highlight-face ;; Search again for ITEM so that the first ;; occurence of ITEM will be highlighted. (save-excursion (re-search-forward (regexp-quote item)) (let ((start (match-beginning 0)) (end (match-end 0))) (if (overlayp libc-highlight-overlay) (move-overlay libc-highlight-overlay start end (current-buffer)) (setq libc-highlight-overlay (make-overlay start end)))) (overlay-put libc-highlight-overlay 'face libc-highlight-face))) (beginning-of-line))) item) (error nil))) (provide 'libc) ;;; libc.el ends here