unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Richard Stallman <rms@gnu.org>
To: bug-cc-mode@gnu.org
Cc: emacs-devel@gnu.org
Subject: Incompatibility of CC mode
Date: Wed, 04 Apr 2007 10:02:11 -0400	[thread overview]
Message-ID: <E1HZ63v-0002d7-5N@fencepost.gnu.org> (raw)

Is there any good reason for this incompatibility?
If not, let's get rid of it.

------- Start of forwarded message -------
X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY 
	autolearn=failed version=3.1.0
DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta;
	h=domainkey-signature:received:received:mime-version:content-transfer-encoding:message-id:content-type:to:from:subject:date:x-mailer;
	b=dTIuFhXeJa1XzScGibBwsvdZozFDIredsI5PPbrUpWmgu46kECkDaB39BkotrBhmcTA1bfRnZsfRJRW43M0hcxmZsOK961kXDmqGSofe63dYoQ60HNZ9Ps43xDen9/w/blSp7/yvJSIP9APBajtKPsf9e9WypGhd4pqBpiNBRD8=
Mime-Version: 1.0 (Apple Message framework v752.3)
Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed
To: bug-gnu-emacs@gnu.org
From: Paul Curry <dashteacup@gmail.com>
Date: Mon, 2 Apr 2007 15:46:32 -0500
Subject: c-subword-mode - inconsistent behavior

The functions c-capitalize-subword, c-downcase-subword, c-upcase-subword
claim to behave like their normal emacs counterparts, but all three
functions move the point when given a negative argument.  Furthermore,
c-capitalize-subword doesn't even work with a negative argument on my
machine.  I changed the functions to better mimic the behavior of
capitalize/downcase/upcase/-word: they no longer move point with a  
negative
argument.

Here's my code:

(defun c-capitalize-subword (arg)
   "Do the same as `capitalize-word' but on subwords.
See the command `c-subword-mode' for a description of subwords.
Optional argument ARG is the same as for `capitalize-word'."
   (interactive "p")
   (let ((count (abs arg))
         (start (point)))
     (dotimes (i count)
       (when (if (< arg 0)
                 (re-search-backward
                  (concat "\\<[" c-alpha "]")
                  nil t)
               (re-search-forward
                (concat "[" c-alpha "]")
                nil t))
	(goto-char (match-beginning 0)))
       (let* ((p (point))
              (pp (1+ p))
	     (np (c-forward-subword)))
	(upcase-region p pp)
	(downcase-region pp np)
	(if (< arg 0)
             (c-backward-subword)
           (goto-char np))))
     (if (< arg 0) (goto-char start))))

(defun c-downcase-subword (arg)
   "Do the same as `downcase-word' but on subwords.
See the command `c-subword-mode' for a description of subwords.
Optional argument ARG is the same as for `downcase-word'."
   (interactive "p")
   (let ((start (point)))
     (downcase-region (point) (c-forward-subword arg))
     (if (< arg 0) (goto-char start))))

(defun c-upcase-subword (arg)
   "Do the same as `upcase-word' but on subwords.
See the command `c-subword-mode' for a description of subwords.
Optional argument ARG is the same as for `upcase-word'."
   (interactive "p")
   (let ((start (point)))
     (upcase-region (point) (c-forward-subword arg))
     (if (< arg 0) (goto-char start))))


_______________________________________________
bug-gnu-emacs mailing list
bug-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-gnu-emacs
------- End of forwarded message -------

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV


             reply	other threads:[~2007-04-04 14:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-04 14:02 Richard Stallman [this message]
2007-04-04 14:17 ` Incompatibility of CC mode Masatake YAMATO
2007-04-04 20:19   ` Alan Mackenzie
2007-04-09 13:20   ` Masatake YAMATO

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1HZ63v-0002d7-5N@fencepost.gnu.org \
    --to=rms@gnu.org \
    --cc=bug-cc-mode@gnu.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).