X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/475789a7d6e602ceed2980c2f2a1c41fc46b56e7..58635e4de85621d4f16befe15b1df44a637bd078:/lisp/progmodes/glasses.el diff --git a/lisp/progmodes/glasses.el b/lisp/progmodes/glasses.el index dadc9cffc7..a1dc19da1e 100644 --- a/lisp/progmodes/glasses.el +++ b/lisp/progmodes/glasses.el @@ -1,6 +1,6 @@ ;;; glasses.el --- make cantReadThis readable -;; Copyright (C) 1999, 2000, 2001, 2005, 2006 Free Software Foundation, Inc. +;; Copyright (C) 1999-2011 Free Software Foundation, Inc. ;; Author: Milan Zamazal ;; Maintainer: Milan Zamazal @@ -8,10 +8,10 @@ ;; This file is part of GNU Emacs. -;; GNU Emacs is free software; you can redistribute it and/or modify +;; 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. +;; the Free Software Foundation, either version 3 of the License, 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 @@ -19,9 +19,7 @@ ;; 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., 51 Franklin Street, Fifth Floor, -;; Boston, MA 02110-1301, USA. +;; along with GNU Emacs. If not, see . ;;; Commentary: @@ -110,6 +108,13 @@ but will have their capitals in bold." :group 'glasses :type 'boolean) +(defcustom glasses-separate-parentheses-exceptions + '("^#[\t ]*define[\t ]*[A-Za-z0-9_-]* ?($") + "List of regexp that are exceptions for `glasses-separate-parentheses-p'. +They are matched to the current line truncated to the point where the +parenthesis expression starts." + :group 'glasses + :type '(repeat regexp)) (defcustom glasses-uncapitalize-p nil "If non-nil, downcase embedded capital letters in identifiers. @@ -153,6 +158,14 @@ Used in :set parameter of some customized glasses variables." ;;; Utility functions +(defun glasses-parenthesis-exception-p (beg end) + "Tell if (BEG, END) is an exception to `glasses-separate-parentheses-p'. +See `glasses-separate-parentheses-exceptions'." + (save-match-data + (let ((str (buffer-substring beg end))) + (catch 'match + (dolist (re glasses-separate-parentheses-exceptions) + (and (string-match re str) (throw 'match t))))))) (defun glasses-set-overlay-properties () "Set properties of glasses overlays. @@ -232,8 +245,9 @@ CATEGORY is the overlay category. If it is nil, use the `glasses' category." (when glasses-separate-parentheses-p (goto-char beg) (while (re-search-forward "[a-zA-Z]_*\\(\(\\)" end t) - (glasses-make-overlay (match-beginning 1) (match-end 1) - 'glasses-parenthesis))))))) + (unless (glasses-parenthesis-exception-p (point-at-bol) (match-end 1)) + (glasses-make-overlay (match-beginning 1) (match-end 1) + 'glasses-parenthesis)))))))) (defun glasses-make-unreadable (beg end) @@ -247,30 +261,31 @@ CATEGORY is the overlay category. If it is nil, use the `glasses' category." "Convert current buffer to unreadable identifiers and return nil. This function modifies buffer contents, it removes all the separators, recognized according to the current value of the variable `glasses-separator'." - (when (and glasses-convert-on-write-p - (not (string= glasses-separator ""))) + (when glasses-convert-on-write-p (let ((case-fold-search nil) (separator (regexp-quote glasses-separator))) (save-excursion - (goto-char (point-min)) - (while (re-search-forward - (format "[a-z]\\(%s\\)[A-Z]\\|[A-Z]\\(%s\\)[A-Z][a-z]" - separator separator) - nil t) - (let ((n (if (match-string 1) 1 2))) - (replace-match "" t nil nil n) - (goto-char (match-end n)))) - (unless (string= glasses-separator glasses-original-separator) + (unless (string= glasses-separator "") (goto-char (point-min)) - (while (re-search-forward (format "[a-zA-Z0-9]\\(%s+\\)[a-zA-Z0-9]" - separator) - nil t) - (replace-match glasses-original-separator nil nil nil 1) - (goto-char (match-beginning 1)))) + (while (re-search-forward + (format "[a-z]\\(%s\\)[A-Z]\\|[A-Z]\\(%s\\)[A-Z][a-z]" + separator separator) + nil t) + (let ((n (if (match-string 1) 1 2))) + (replace-match "" t nil nil n) + (goto-char (match-end n)))) + (unless (string= glasses-separator glasses-original-separator) + (goto-char (point-min)) + (while (re-search-forward (format "[a-zA-Z0-9]\\(%s+\\)[a-zA-Z0-9]" + separator) + nil t) + (replace-match glasses-original-separator nil nil nil 1) + (goto-char (match-beginning 1))))) (when glasses-separate-parentheses-p (goto-char (point-min)) (while (re-search-forward "[a-zA-Z]_*\\( \\)\(" nil t) - (replace-match "" t nil nil 1)))))) + (unless (glasses-parenthesis-exception-p (point-at-bol) (1+ (match-end 1))) + (replace-match "" t nil nil 1))))))) ;; nil must be returned to allow use in write file hooks nil) @@ -313,5 +328,4 @@ at places they belong to." (provide 'glasses) -;; arch-tag: a3515167-c89e-484f-90a1-d85143e52b12 ;;; glasses.el ends here