Mercurial > emacs
changeset 50859:25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 06 May 2003 17:43:22 +0000 |
parents | 54347668e2e9 |
children | 4fd35ed09e9b |
files | lisp/progmodes/cperl-mode.el |
diffstat | 1 files changed, 13 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/cperl-mode.el Tue May 06 17:41:48 2003 +0000 +++ b/lisp/progmodes/cperl-mode.el Tue May 06 17:43:22 2003 +0000 @@ -38,7 +38,7 @@ ;; DO NOT FORGET to read micro-docs (available from `Perl' menu) <<<<<< ;; or as help on variables `cperl-tips', `cperl-problems', <<<<<< -;; `cperl-praise', `cperl-speed'. <<<<<< +;; `cperl-praise', `cperl-speed'. <<<<<< ;; The mode information (on C-h m) provides some customization help. ;; If you use font-lock feature of this mode, it is advisable to use @@ -1146,7 +1146,7 @@ ["Add tags for Perl files in (sub)directories" (cperl-write-tags nil nil t t) t])) ("Perl docs" - ["Define word at point" imenu-go-find-at-position + ["Define word at point" imenu-go-find-at-position (fboundp 'imenu-go-find-at-position)] ["Help on function" cperl-info-on-command t] ["Help on function at point" cperl-info-on-current-command t] @@ -1154,7 +1154,7 @@ ["Perldoc" cperl-perldoc t] ["Perldoc on word at point" cperl-perldoc-at-point t] ["View manpage of POD in this file" cperl-build-manpage t] - ["Auto-help on" cperl-lazy-install + ["Auto-help on" cperl-lazy-install (and (fboundp 'run-with-idle-timer) (not cperl-lazy-installed))] ["Auto-help off" cperl-lazy-unstall @@ -1166,7 +1166,7 @@ ["Electric keywords" cperl-toggle-abbrev t] ["Fix whitespace on indent" cperl-toggle-construct-fix t] ["Auto-help on Perl constructs" cperl-toggle-autohelp t] - ["Auto fill" auto-fill-mode t]) + ["Auto fill" auto-fill-mode t]) ("Indent styles..." ["CPerl" (cperl-set-style "CPerl") t] ["PerlStyle" (cperl-set-style "PerlStyle") t] @@ -2912,7 +2912,7 @@ (goto-char (1- cpoint))))) (setq stop-in t) ; Finish (forward-char -1)) - (setq stop-in t))) ; Finish + (setq stop-in t))) ; Finish (nth 4 state)))) (defsubst cperl-1- (p) @@ -3570,7 +3570,7 @@ ((and (eq (following-char) ?:) (eq b1 ?\{) ; Check for $ { s::bar } (looking-at "::[a-zA-Z0-9_:]*[ \t\n\f]*}") - (progn + (progn (goto-char (1- go)) (skip-chars-backward " \t\n\f") (memq (preceding-char) @@ -4882,7 +4882,7 @@ (defvar cperl-guessed-background nil "Display characteristics as guessed by cperl.") ;; (or (fboundp 'x-color-defined-p) - ;; (defalias 'x-color-defined-p + ;; (defalias 'x-color-defined-p ;; (cond ((fboundp 'color-defined-p) 'color-defined-p) ;; ;; XEmacs >= 19.12 ;; ((fboundp 'valid-color-name-p) 'valid-color-name-p) @@ -5198,7 +5198,7 @@ Chosing \"Current\" style will not change style, so this may be used for side-effect of memorizing only." (interactive - (let ((list (mapcar (function (lambda (elt) (list (car elt)))) + (let ((list (mapcar (function (lambda (elt) (list (car elt)))) cperl-style-alist))) (list (completing-read "Enter style: " list nil 'insist)))) (or cperl-old-style @@ -5403,7 +5403,7 @@ MINSHIFT is the minimal amount of space to insert before the construction. STEP is the tabwidth to position constructions. If STEP is nil, `cperl-lineup-step' will be used -\(or `cperl-indent-level', if `cperl-lineup-step' is `nil'). +\(or `cperl-indent-level', if `cperl-lineup-step' is nil). Will not move the position at the start to the left." (interactive "r") (let (search col tcol seen b e) @@ -5658,7 +5658,7 @@ (string-match "^sub[ \t]+\\([_a-zA-Z]+\\)[^:_a-zA-Z]" (elt elt 3))) ;; Need to insert the name without package as well - (setq lst (cons (cons (substring (elt elt 3) + (setq lst (cons (cons (substring (elt elt 3) (match-beginning 1) (match-end 1)) (cdr elt)) @@ -5730,7 +5730,7 @@ (setq cperl-unreadable-ok t tm nil) ; Return empty list (error "Aborting: unreadable directory %s" file))))))) - (mapcar (function + (mapcar (function (lambda (file) (cond ((string-match cperl-noscan-files-regexp file) @@ -6008,12 +6008,12 @@ (defvar cperl-bad-style-regexp (mapconcat 'identity '("[^-\n\t <>=+!.&|(*/'`\"#^][-=+<>!|&^]" ; char sign - "[-<>=+^&|]+[^- \t\n=+<>~]") ; sign+ char + "[-<>=+^&|]+[^- \t\n=+<>~]") ; sign+ char "\\|") "Finds places such that insertion of a whitespace may help a lot.") (defvar cperl-not-bad-style-regexp - (mapconcat + (mapconcat 'identity '("[^-\t <>=+]\\(--\\|\\+\\+\\)" ; var-- var++ "[a-zA-Z0-9_][|&][a-zA-Z0-9_$]" ; abc|def abc&def are often used.